diff options
author | Eli Zaretskii <eliz@gnu.org> | 2019-07-25 19:32:25 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2019-07-25 19:32:25 +0300 |
commit | 385416af6a3a1aa2e00a3aec3f0938ec44ca0f9c (patch) | |
tree | 3fea9bbd9f2c4f3b7c5b087ba552df1d60082fc8 /lisp/progmodes/xref.el | |
parent | 0cbdbac2bbc0ade799711cd70d3d59aee3db9cef (diff) | |
download | emacs-385416af6a3a1aa2e00a3aec3f0938ec44ca0f9c.tar.gz emacs-385416af6a3a1aa2e00a3aec3f0938ec44ca0f9c.tar.bz2 emacs-385416af6a3a1aa2e00a3aec3f0938ec44ca0f9c.zip |
Fix recent commit in xref.el
* lisp/progmodes/xref.el (xref-file-name-display): Doc fix.
* etc/NEWS: Fix the corresponding entry.
Diffstat (limited to 'lisp/progmodes/xref.el')
-rw-r--r-- | lisp/progmodes/xref.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 8dc4f3c4714..57d803894c8 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el @@ -99,7 +99,11 @@ This is typically the filename.") ;;;; Commonly needed location classes are defined here: (defcustom xref-file-name-display 'abs - "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 +in their full absolute form. +If `nondirectory', show only the nondirectory (a.k.a. \"base name\") +part of the file name." :type '(choice (const :tag "absolute file name" abs) (const :tag "nondirectory file name" nondirectory)) :version "27.1") |