emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r116510: lisp/simple.el (choose-completion): Fix doc


From: Juanma Barranquero
Subject: [Emacs-diffs] trunk r116510: lisp/simple.el (choose-completion): Fix docstring typo.
Date: Fri, 21 Feb 2014 13:22:27 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116510
revision-id: address@hidden
parent: address@hidden
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Fri 2014-02-21 14:22:14 +0100
message:
  lisp/simple.el (choose-completion): Fix docstring typo.
  (read-quoted-char-radix): Remove unneeded * in docstring.
  (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
  Don't escape parentheses unnecessarily in docstrings.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/simple.el                 simple.el-20091113204419-o5vbwnq5f7feedwu-403
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-02-21 11:04:27 +0000
+++ b/lisp/ChangeLog    2014-02-21 13:22:14 +0000
@@ -1,3 +1,10 @@
+2014-02-21  Juanma Barranquero  <address@hidden>
+
+       * simple.el (choose-completion): Fix docstring typo.
+       (read-quoted-char-radix): Remove unneeded * in docstring.
+       (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
+       Don't escape parentheses unnecessarily in docstrings.
+
 2014-02-21  Martin Rudalics  <address@hidden>
 
        Fix handling of window-min-height/-width (Bug#16738).

=== modified file 'lisp/simple.el'
--- a/lisp/simple.el    2014-02-10 06:58:34 +0000
+++ b/lisp/simple.el    2014-02-21 13:22:14 +0000
@@ -641,7 +641,7 @@
     (indent-according-to-mode)))
 
 (defcustom read-quoted-char-radix 8
- "*Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
+  "Radix for \\[quoted-insert] and other uses of `read-quoted-char'.
 Legitimate radix values are 8, 10 and 16."
  :type '(choice (const 8) (const 10) (const 16))
  :group 'editing-basics)
@@ -3184,9 +3184,9 @@
 
 File names in INFILE and BUFFER are handled normally, but file
 names in ARGS should be relative to `default-directory', as they
-are passed to the process verbatim.  \(This is a difference to
+are passed to the process verbatim.  (This is a difference to
 `call-process' which does not support file handlers for INFILE
-and BUFFER.\)
+and BUFFER.)
 
 Some file handlers might not support all variants, for example
 they might behave as if DISPLAY was nil, regardless of the actual
@@ -4107,7 +4107,7 @@
   "Kill current line.
 With prefix ARG, kill that many lines starting from the current line.
 If ARG is negative, kill backward.  Also kill the preceding newline.
-\(This is meant to make \\[repeat] work well with negative arguments.\)
+\(This is meant to make \\[repeat] work well with negative arguments.)
 If ARG is zero, kill current line but exclude the trailing newline."
   (interactive "p")
   (or arg (setq arg 1))
@@ -4531,7 +4531,7 @@
 
 (defun pop-to-mark-command ()
   "Jump to mark, and pop a new position for mark off the ring.
-\(Does not affect global mark ring\)."
+\(Does not affect global mark ring)."
   (interactive)
   (if (null (mark t))
       (error "No mark set in this buffer")
@@ -4577,11 +4577,11 @@
 When Transient Mark Mode is off, immediately repeating this
 command activates `transient-mark-mode' temporarily.
 
-With prefix argument \(e.g., \\[universal-argument] \\[set-mark-command]\), \
+With prefix argument (e.g., \\[universal-argument] \\[set-mark-command]), \
 jump to the mark, and set the mark from
-position popped off the local mark ring \(this does not affect the global
-mark ring\).  Use \\[pop-global-mark] to jump to a mark popped off the global
-mark ring \(see `pop-global-mark'\).
+position popped off the local mark ring (this does not affect the global
+mark ring).  Use \\[pop-global-mark] to jump to a mark popped off the global
+mark ring (see `pop-global-mark').
 
 If `set-mark-command-repeat-pop' is non-nil, repeating
 the \\[set-mark-command] command with no prefix argument pops the next position
@@ -5380,7 +5380,7 @@
        ;; the middle of a continued line.  When we get to
        ;; line-move-finish, point is at the start of a new *screen*
        ;; line but the same text line; then line-move-to-column would
-       ;; move us backwards. Test using C-n with point on the "x" in
+       ;; move us backwards.  Test using C-n with point on the "x" in
        ;;   (insert "a" (propertize "x" 'field t) (make-string 89 ?y))
        (and forward
             (< (point) old)
@@ -6914,7 +6914,7 @@
 
 (defun choose-completion (&optional event)
   "Choose the completion at point.
-If EVENT, use EVENTs position to determine the starting position."
+If EVENT, use EVENT's position to determine the starting position."
   (interactive (list last-nonmenu-event))
   ;; In case this is run via the mouse, give temporary modes such as
   ;; isearch a chance to turn off.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]