]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix recent commit in xref.el
authorEli Zaretskii <eliz@gnu.org>
Thu, 25 Jul 2019 16:32:25 +0000 (19:32 +0300)
committerEli Zaretskii <eliz@gnu.org>
Thu, 25 Jul 2019 16:32:25 +0000 (19:32 +0300)
* lisp/progmodes/xref.el (xref-file-name-display): Doc fix.

* etc/NEWS: Fix the corresponding entry.

etc/NEWS
lisp/progmodes/xref.el

index c1cc216659e6af3d753f427bfbb5339ca35dc502..f47cf071bb509fd8eeb511af695dc7724dee831e 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -404,7 +404,8 @@ mode they are described in the manual "(emacs) Display".
 ---
 ** New variable 'xref-file-name-display' controls the display of file
 names in xref buffers.
-** New variable `file-size-function' controls how file sizes are displayed
+
+** New variable `file-size-function' controls how file sizes are displayed.
 
 \f
 * Editing Changes in Emacs 27.1
index 8dc4f3c4714ef3184a3c75a6033a2506a85f27a2..57d803894c87942d0570e07d268a9e615c621a9d 100644 (file)
@@ -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")