]> git.eshelyaron.com Git - emacs.git/commitdiff
; Doc fixes
authorCharles A. Roelli <charles@aurox.ch>
Tue, 31 Oct 2017 21:01:34 +0000 (22:01 +0100)
committerCharles A. Roelli <charles@aurox.ch>
Tue, 31 Oct 2017 21:01:34 +0000 (22:01 +0100)
* 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.

doc/emacs/msdos.texi
etc/NEWS
lisp/progmodes/xref.el
lisp/vc/vc.el
src/buffer.c

index 356936504eca0e178ff0987342dc508b9bc1fcce..dd2004fbb007c2c9d688c47a97c07609cdeb79ed 100644 (file)
@@ -580,7 +580,7 @@ pressed the @key{Shift} key while typing the non-character key.
 @vindex w32-enable-caps-lock
   If the variable @code{w32-enable-caps-lock} is set to a @code{nil}
 value, the @key{CapsLock} key produces the symbol @code{capslock}
-instead of the shifted version of they keys.  The default value is
+instead of the shifted version of typed keys.  The default value is
 @code{t}.
 
 @vindex w32-enable-num-lock
index 61fadfb5a0a18a3f4cf8ead2250bf115b0dd384f..6809e352a8fb3675ec13cb3737e585d1b3491b5d 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1692,7 +1692,7 @@ job of signaling list cycles instead of looping indefinitely.
 
 +++
 ** The new functions 'make-nearby-temp-file' and 'temporary-file-directory'
-can be used for creation of temporary files of remote or mounted directories.
+can be used for creation of temporary files on remote or mounted directories.
 
 +++
 ** On GNU platforms when operating on a local file, 'file-attributes'
@@ -1720,7 +1720,7 @@ operating recursively and when some other process deletes the directory
 or its files before 'delete-directory' gets to them.
 
 +++
-*** New error type 'user-search-failed' like 'search-failed' but
+** New error type 'user-search-failed' like 'search-failed' but
 avoids debugger like 'user-error'.
 
 +++
index 80cdcb3f18bf61e702b9c75543994246b3d82386..3dbf65ef6f524e7847ea042c42545cd1c9c210d8 100644 (file)
@@ -102,7 +102,7 @@ This is typically the filename.")
 ;;;; Commonly needed location classes are defined here:
 
 ;; FIXME: might be useful to have an optional "hint" i.e. a string to
-;; search for in case the line number is sightly out of date.
+;; search for in case the line number is slightly out of date.
 (defclass xref-file-location (xref-location)
   ((file :type string :initarg :file)
    (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
       (project-external-roots pr)))))
 
 (cl-defgeneric xref-backend-apropos (backend pattern)
-  "Find all symbols that match PATTERN.
-PATTERN is a regexp")
+  "Find all symbols that match regexp PATTERN.")
 
 (cl-defgeneric xref-backend-identifier-at-point (_backend)
   "Return the relevant identifier at point.
index b80f0e69491fc7c2609d3cf9af96eae079372a54..211feddc55d646562d7b78e300000368b209d12e 100644 (file)
@@ -2377,6 +2377,7 @@ When called interactively with a prefix argument, prompt for LIMIT."
 
 ;;;###autoload
 (defun vc-print-branch-log (branch)
+  "Show the change log for BRANCH in a window."
   (interactive
    (list
     (vc-read-revision "Branch to log: ")))
index 1c8b46350861b65aee9c30ba8ae0892c236e3592..9635733fcffa3ccdffdcc42664aa18b43d591a77 100644 (file)
@@ -5716,7 +5716,7 @@ word-wrapping, you might want to reduce the value of
 in narrower windows.
 
 Instead of setting this variable directly, most users should use
-Visual Line mode .  Visual Line mode, when enabled, sets `word-wrap'
+Visual Line mode.  Visual Line mode, when enabled, sets `word-wrap'
 to t, and additionally redefines simple editing commands to act on
 visual lines rather than logical lines.  See the documentation of
 `visual-line-mode'.  */);