emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-26 b2518ac: Spelling fixes


From: Paul Eggert
Subject: [Emacs-diffs] emacs-26 b2518ac: Spelling fixes
Date: Sun, 19 Nov 2017 03:21:15 -0500 (EST)

branch: emacs-26
commit b2518ac7501810b49e078e55c07bf6740c27dec4
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Spelling fixes
    
    * lisp/help-fns.el (help-fns--analyze-function):
    Rename from help-fns--analyse-function.
    All uses changed.
---
 ChangeLog.3               | 2 +-
 etc/NEWS                  | 5 ++---
 lisp/help-fns.el          | 6 +++---
 lisp/progmodes/cc-mode.el | 2 +-
 4 files changed, 7 insertions(+), 8 deletions(-)

diff --git a/ChangeLog.3 b/ChangeLog.3
index e7831a3..17f18c0 100644
--- a/ChangeLog.3
+++ b/ChangeLog.3
@@ -38322,7 +38322,7 @@
        Automatically detect whether .h file is C or C++
 
        * lisp/progmodes/cc-mode.el (c-or-c++-mode): A new function which
-       analyses contents of the buffer to determine whether it looks like C++
+       analyzes contents of the buffer to determine whether it looks like C++
        source code and based on that enables c-mode or c++-mode.
        (c-or-c++-mode--regexp): Regular expression which, when matches
        a buffer, signals file is C++.
diff --git a/etc/NEWS b/etc/NEWS
index f79c2cb..6da4ab9 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -1155,9 +1155,8 @@ branch-related commands on a keymap bound to 'B'.
 
 ---
 *** Opening a .h file will turn C or C++ mode depending on language used.
-This is done with the help of 'c-or-c++-mode' function which analyses
-contents of the buffer to determine whether it's a C or C++ source
-file.
+This is done with the help of the 'c-or-c++-mode' function, which
+analyzes buffer contents to infer whether it's a C or C++ source file.
 
 ---
 ** New option 'cpp-message-min-time-interval' to allow user control
diff --git a/lisp/help-fns.el b/lisp/help-fns.el
index cae0247..7f135e5 100644
--- a/lisp/help-fns.el
+++ b/lisp/help-fns.el
@@ -560,7 +560,7 @@ FILE is the file where FUNCTION was probably defined."
             (setq short rel))))
     short))
 
-(defun help-fns--analyse-function (function)
+(defun help-fns--analyze-function (function)
   ;; FIXME: Document/explain the differences between FUNCTION,
   ;; REAL-FUNCTION, DEF, and REAL-DEF.
   "Return information about FUNCTION.
@@ -602,7 +602,7 @@ Returns a list of the form (REAL-FUNCTION DEF ALIASED 
REAL-DEF)."
 (defun help-fns-function-description-header (function)
   "Print a line describing FUNCTION to `standard-output'."
   (pcase-let* ((`(,_real-function ,def ,aliased ,real-def)
-                (help-fns--analyse-function function))
+                (help-fns--analyze-function function))
                (file-name (find-lisp-object-file-name function (if aliased 
'defun
                                                                  def)))
                (beg (if (and (or (byte-code-function-p def)
@@ -692,7 +692,7 @@ Returns a list of the form (REAL-FUNCTION DEF ALIASED 
REAL-DEF)."
   (terpri)(terpri)
 
   (pcase-let* ((`(,real-function ,def ,_aliased ,real-def)
-                (help-fns--analyse-function function))
+                (help-fns--analyze-function function))
                (doc-raw (condition-case nil
                             ;; FIXME: Maybe `documentation' should return nil
                             ;; for invalid functions i.s.o. signaling an error.
diff --git a/lisp/progmodes/cc-mode.el b/lisp/progmodes/cc-mode.el
index f74e931..22dea03 100644
--- a/lisp/progmodes/cc-mode.el
+++ b/lisp/progmodes/cc-mode.el
@@ -1859,7 +1859,7 @@ Key bindings:
 
 ;;;###autoload
 (defun c-or-c++-mode ()
-  "Analyse buffer and enable either C or C++ mode.
+  "Analyze buffer and enable either C or C++ mode.
 
 Some people and projects use .h extension for C++ header files
 which is also the one used for C header files.  This makes



reply via email to

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