* lisp/progmodes/xref.el (xref-file-name-display): Fix docstring.

This commit is contained in:
Philipp Stephani 2022-01-14 22:01:06 +01:00
parent c05864dd25
commit ac2cdb8a46

View file

@ -118,16 +118,16 @@ When it is a file name, it should be the \"expanded\" version.")
(defcustom xref-file-name-display 'project-relative (defcustom xref-file-name-display 'project-relative
"Style of file name display in *xref* buffers. "Style of file name display in *xref* buffers.
If the value is the symbol `abs', the default, show the file names If the value is the symbol `abs', show the file names in their
in their full absolute form. full absolute form.
If `nondirectory', show only the nondirectory (a.k.a. \"base name\") If `nondirectory', show only the nondirectory (a.k.a. \"base name\")
part of the file name. part of the file name.
If `project-relative', show only the file name relative to the If `project-relative', the default, show only the file name
current project root. If there is no current project, or if the relative to the current project root. If there is no current
file resides outside of its root, show that particular file name project, or if the file resides outside of its root, show that
in its full absolute form." particular file name in its full absolute form."
:type '(choice (const :tag "absolute file name" abs) :type '(choice (const :tag "absolute file name" abs)
(const :tag "nondirectory file name" nondirectory) (const :tag "nondirectory file name" nondirectory)
(const :tag "relative to project root" project-relative)) (const :tag "relative to project root" project-relative))