diff options
| author | Charles A. Roelli | 2017-10-31 22:01:34 +0100 |
|---|---|---|
| committer | Charles A. Roelli | 2017-10-31 22:01:34 +0100 |
| commit | 460fe4a1bc40f2ba39deda6448a7baf57e0e6b76 (patch) | |
| tree | b0aa0fc60218835141122f5e5d054458bee57f40 /lisp | |
| parent | 41adf3281ef6386c539f1fb9d36c4fb3f643b77c (diff) | |
| download | emacs-460fe4a1bc40f2ba39deda6448a7baf57e0e6b76.tar.gz emacs-460fe4a1bc40f2ba39deda6448a7baf57e0e6b76.zip | |
; Doc fixes
* lisp/progmodes/xref.el (xref-file-location)
(xref-backend-apropos):
* etc/NEWS (Lisp Changes in Emacs 26.1):
* doc/emacs/msdos.texi (Windows Keyboard):
* lisp/vc/vc.el (vc-print-branch-log):
* src/buffer.c (word-wrap): Doc additions and fixes.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/xref.el | 5 | ||||
| -rw-r--r-- | lisp/vc/vc.el | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/progmodes/xref.el b/lisp/progmodes/xref.el index 80cdcb3f18b..3dbf65ef6f5 100644 --- a/lisp/progmodes/xref.el +++ b/lisp/progmodes/xref.el | |||
| @@ -102,7 +102,7 @@ This is typically the filename.") | |||
| 102 | ;;;; Commonly needed location classes are defined here: | 102 | ;;;; Commonly needed location classes are defined here: |
| 103 | 103 | ||
| 104 | ;; FIXME: might be useful to have an optional "hint" i.e. a string to | 104 | ;; FIXME: might be useful to have an optional "hint" i.e. a string to |
| 105 | ;; search for in case the line number is sightly out of date. | 105 | ;; search for in case the line number is slightly out of date. |
| 106 | (defclass xref-file-location (xref-location) | 106 | (defclass xref-file-location (xref-location) |
| 107 | ((file :type string :initarg :file) | 107 | ((file :type string :initarg :file) |
| 108 | (line :type fixnum :initarg :line :reader xref-location-line) | 108 | (line :type fixnum :initarg :line :reader xref-location-line) |
| @@ -254,8 +254,7 @@ find a search tool; by default, this uses \"find | grep\" in the | |||
| 254 | (project-external-roots pr))))) | 254 | (project-external-roots pr))))) |
| 255 | 255 | ||
| 256 | (cl-defgeneric xref-backend-apropos (backend pattern) | 256 | (cl-defgeneric xref-backend-apropos (backend pattern) |
| 257 | "Find all symbols that match PATTERN. | 257 | "Find all symbols that match regexp PATTERN.") |
| 258 | PATTERN is a regexp") | ||
| 259 | 258 | ||
| 260 | (cl-defgeneric xref-backend-identifier-at-point (_backend) | 259 | (cl-defgeneric xref-backend-identifier-at-point (_backend) |
| 261 | "Return the relevant identifier at point. | 260 | "Return the relevant identifier at point. |
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index b80f0e69491..211feddc55d 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el | |||
| @@ -2377,6 +2377,7 @@ When called interactively with a prefix argument, prompt for LIMIT." | |||
| 2377 | 2377 | ||
| 2378 | ;;;###autoload | 2378 | ;;;###autoload |
| 2379 | (defun vc-print-branch-log (branch) | 2379 | (defun vc-print-branch-log (branch) |
| 2380 | "Show the change log for BRANCH in a window." | ||
| 2380 | (interactive | 2381 | (interactive |
| 2381 | (list | 2382 | (list |
| 2382 | (vc-read-revision "Branch to log: "))) | 2383 | (vc-read-revision "Branch to log: "))) |