]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 19 Nov 2017 08:19:51 +0000 (00:19 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 19 Nov 2017 08:21:09 +0000 (00:21 -0800)
* lisp/help-fns.el (help-fns--analyze-function):
Rename from help-fns--analyse-function.
All uses changed.

ChangeLog.3
etc/NEWS
lisp/help-fns.el
lisp/progmodes/cc-mode.el

index e7831a37aacb795e9df5ff838702bdc5bdec8959..17f18c0fad376f7494d691142a0b9bca935a22a7 100644 (file)
        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++.
index f79c2cbc8ead7b141518520ef048a5b1193fc28d..6da4ab93b132d49318da2eeb1c31a3c9f4a47d99 100644 (file)
--- 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
index cae0247a5424e60d8f111d4950fa143f822fef0b..7f135e52ee3f4729d7f5232c261e9cfe1b37dbba 100644 (file)
@@ -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.
index f74e931a8bb056fe235cf5cce273e7758a003076..22dea039cd1e88e46a461d17ed4135ac617e58eb 100644 (file)
@@ -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