diff options
| author | Philipp Stephani | 2022-01-14 22:01:06 +0100 |
|---|---|---|
| committer | Philipp Stephani | 2022-01-14 22:01:06 +0100 |
| commit | ac2cdb8a460243ab25aadc6baf5472d77abe070f (patch) | |
| tree | f8b7de27451b41e21b36c4ad627ba94090f9832b | |
| parent | c05864dd25c820fe250672d32d6ec77ba946670d (diff) | |
| download | emacs-ac2cdb8a460243ab25aadc6baf5472d77abe070f.tar.gz emacs-ac2cdb8a460243ab25aadc6baf5472d77abe070f.zip | |
* lisp/progmodes/xref.el (xref-file-name-display): Fix docstring.
| -rw-r--r-- | lisp/progmodes/xref.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 2311db426d4..0ee7dd5cadf 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el | |||
| @@ -118,16 +118,16 @@ When it is a file name, it should be the \"expanded\" version.") | |||
| 118 | (defcustom xref-file-name-display 'project-relative | 118 | (defcustom xref-file-name-display 'project-relative |
| 119 | "Style of file name display in *xref* buffers. | 119 | "Style of file name display in *xref* buffers. |
| 120 | 120 | ||
| 121 | If the value is the symbol `abs', the default, show the file names | 121 | If the value is the symbol `abs', show the file names in their |
| 122 | in their full absolute form. | 122 | full absolute form. |
| 123 | 123 | ||
| 124 | If `nondirectory', show only the nondirectory (a.k.a. \"base name\") | 124 | If `nondirectory', show only the nondirectory (a.k.a. \"base name\") |
| 125 | part of the file name. | 125 | part of the file name. |
| 126 | 126 | ||
| 127 | If `project-relative', show only the file name relative to the | 127 | If `project-relative', the default, show only the file name |
| 128 | current project root. If there is no current project, or if the | 128 | relative to the current project root. If there is no current |
| 129 | file resides outside of its root, show that particular file name | 129 | project, or if the file resides outside of its root, show that |
| 130 | in its full absolute form." | 130 | particular file name in its full absolute form." |
| 131 | :type '(choice (const :tag "absolute file name" abs) | 131 | :type '(choice (const :tag "absolute file name" abs) |
| 132 | (const :tag "nondirectory file name" nondirectory) | 132 | (const :tag "nondirectory file name" nondirectory) |
| 133 | (const :tag "relative to project root" project-relative)) | 133 | (const :tag "relative to project root" project-relative)) |