emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r116541: lisp/apropos: Fix typos.


From: Juanma Barranquero
Subject: [Emacs-diffs] trunk r116541: lisp/apropos: Fix typos.
Date: Sun, 23 Feb 2014 23:41:26 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 116541
revision-id: address@hidden
parent: address@hidden
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2014-02-24 00:41:17 +0100
message:
  lisp/apropos: Fix typos.
  
  (apropos-property, apropos-all-words-regexp)
  (apropos-true-hit, apropos-variable, apropos-print):
  Fix docstring typos, and remove obsolete comment.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/apropos.el                apropos.el-20091113204419-o5vbwnq5f7feedwu-273
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2014-02-23 14:51:29 +0000
+++ b/lisp/ChangeLog    2014-02-23 23:41:17 +0000
@@ -1,3 +1,9 @@
+2014-02-23  Juanma Barranquero  <address@hidden>
+
+       * apropos.el (apropos-property, apropos-all-words-regexp)
+       (apropos-true-hit, apropos-variable, apropos-print):
+       Fix docstring typos, and remove obsolete comment.
+
 2014-02-23  Michael Albinus  <address@hidden>
 
        * net/tramp-sh.el (tramp-sh-handle-file-truename):

=== modified file 'lisp/apropos.el'
--- a/lisp/apropos.el   2014-02-13 05:23:06 +0000
+++ b/lisp/apropos.el   2014-02-23 23:41:17 +0000
@@ -99,7 +99,7 @@
 
 (defface apropos-property
   '((t (:inherit font-lock-builtin-face)))
-  "Face for property name in apropos output, or nil for none."
+  "Face for property name in Apropos output, or nil for none."
   :group 'apropos
   :version "24.3")
 
@@ -182,7 +182,7 @@
   "Regexp used in current apropos run.")
 
 (defvar apropos-all-words-regexp nil
-  "Regexp matching apropos-all-words.")
+  "Regexp matching `apropos-all-words'.")
 
 (defvar apropos-files-scanned ()
   "List of elc files already scanned in current run of 
`apropos-documentation'.")
@@ -411,7 +411,6 @@
          apropos-pattern pattern
          apropos-regexp pattern)))
 
-
 (defun apropos-calc-scores (str words)
   "Return apropos scores for string STR matching WORDS.
 Value is a list of offsets of the words into the string."
@@ -455,7 +454,7 @@
 (defun apropos-true-hit (str words)
   "Return t if STR is a genuine hit.
 This may fail if only one of the keywords is matched more than once.
-This requires that at least 2 keywords (unless only one was given)."
+This requires at least two keywords (unless only one was given)."
   (or (not str)
       (not words)
       (not (cdr words))
@@ -506,7 +505,7 @@
 ;;;###autoload
 (defun apropos-variable (pattern &optional do-not-all)
   "Show variables that match PATTERN.
-When DO-NOT-ALL is not-nil, show user options only, i.e. behave
+When DO-NOT-ALL is non-nil, show user options only, i.e. behave
 like `apropos-user-option'."
   (interactive (list (apropos-read-pattern
                      (if current-prefix-arg "user option" "variable"))
@@ -1038,14 +1037,12 @@
 `apropos-accumulator' to nil before returning.
 
 If SPACING is non-nil, it should be a string; separate items with that string.
-If non-nil TEXT is a string that will be printed as a heading."
+If non-nil, TEXT is a string that will be printed as a heading."
   (if (null apropos-accumulator)
       (message "No apropos matches for `%s'" apropos-pattern)
     (setq apropos-accumulator
          (sort apropos-accumulator
                (lambda (a b)
-                 ;; Don't sort by score if user can't see the score.
-                 ;; It would be confusing.  -- rms.
                  (if apropos-sort-by-scores
                      (or (> (cadr a) (cadr b))
                          (and (= (cadr a) (cadr b))


reply via email to

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