]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling and grammar fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Mon, 30 Nov 2015 05:50:59 +0000 (21:50 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 30 Nov 2015 05:52:17 +0000 (21:52 -0800)
13 files changed:
doc/emacs/search.texi
lisp/emacs-lisp/bytecomp.el
lisp/emacs-lisp/smie.el
lisp/progmodes/cc-bytecomp.el
lisp/progmodes/cc-engine.el
lisp/replace.el
m4/ax_gcc_var_attribute.m4
modules/mod-test/mod-test.c
modules/modhelp.py
src/ChangeLog.13
src/emacs-module.c
src/nsterm.h
src/nsterm.m

index bcf1beaa3557bfc4c1aa8c34f8c988a1dbac2f85..88ec68c43ec9856e6ed1649842a12057f261a9a9 100644 (file)
@@ -26,7 +26,7 @@ thing, but search for patterns instead of fixed strings.
 * Regexps::                   Syntax of regular expressions.
 * Regexp Backslash::          Regular expression constructs starting with `\'.
 * Regexp Example::            A complex regular expression explained.
-* Lax Search::                Search ignores some distinctions between
+* Lax Search::                Search ignores some distinctions among
                                 similar characters, like letter-case.
 * Replace::                   Search, and replace some or all matches.
 * Other Repeating Search::    Operating on all matches for some regexp.
@@ -1144,7 +1144,7 @@ close-brackets, quotes, or parentheses, repeated zero or more times.
 @cindex lax search
 @cindex character equivalence in search
   Normally, you'd want search commands to disregard certain minor
-differences between the search string you types and the text being
+differences between the search string you type and the text being
 searched.  For example, sequences of whitespace characters of
 different length are usually perceived as equivalent; letter-case
 differences usually don't matter; etc.  This is known as
@@ -1226,13 +1226,13 @@ apropos-variable @key{RET} case-fold-search @key{RET}}.
 
 @cindex character folding in search
 @cindex equivalent character sequences
-  Case folding disregards case distinctions between characters, making
+  Case folding disregards case distinctions among characters, making
 upper-case characters match lower-case variants, and vice versa.  A
 generalization of case folding is @dfn{character folding}, which
-disregards wider classes of distinctions between similar characters.
+disregards wider classes of distinctions among similar characters.
 For instance, under character folding the letter @code{a} matches all
 of its accented cousins like @code{@"a} and @code{@'a}, i.e., the
-match disregards the diacriticals that distinguish between these
+match disregards the diacritics that distinguish these
 variants.  In addition, @code{a} matches other characters that
 resemble it, or have it as part of their graphical representation,
 such as @sc{u+249c parenthesized latin small letter a} and @sc{u+2100
index 14173494eeb077cf537af0d8bce1c32d405c047e..b5b618e87d7a74d2daf4a04ad40485f1f4721963 100644 (file)
@@ -2366,7 +2366,7 @@ list that represents a doc string reference.
        hist-new prov-cons)
     (apply 'require args)
 
-    ;; Record the functions defined by the require in `byte-compille-new-defuns'.
+    ;; Record the functions defined by the require in `byte-compile-new-defuns'.
     (setq hist-new load-history)
     (setq prov-cons (cons 'provide (car args)))
     (while (and hist-new
index 197861fbae2968d4d2235026b1996d699b03d505..25ea4bbb58870e4cae1af3acbe12a7de84d59897 100644 (file)
@@ -811,7 +811,7 @@ Possible return values:
    (indirect-function smie-backward-token-function)
    (lambda (n)
      (if (bobp)
-         ;; Arguably backward-sexp hould signal this error for us.
+         ;; Arguably backward-sexp should signal this error for us.
          (signal 'scan-error
                  (list "Beginning of buffer" (point) (point)))
        (backward-sexp n)))
index 1470b080264b9c99a1f844fc25175e1696ac8179..d3b4db74c160b917171b5bb1ab3d128e95fbc31e 100644 (file)
@@ -315,7 +315,7 @@ CONDITION should not be quoted."
     '(progn)))
 
 (defmacro cc-conditional-require-after-load (cc-part file condition)
-  "If the CONDITION is satified at compile time, (i) force the
+  "If the CONDITION is satisfied at compile time, (i) force the
 file CC-PART.el in the current directory to be loaded at compile
 time, (ii) generate an `eval-after-load' form to load CC-PART.el
 after the loading of FILE.
index 9e9bee8752f4aac812044094637a344f2768af02..acc2eddff735b93e357bf0d8f20145d34f2410d8 100644 (file)
@@ -8065,7 +8065,7 @@ brace.
 Note that this function might do hidden buffer changes.  See the
 comment at the start of cc-engine.el for more info."
   ;; Note to maintainers: this function consumes a great mass of CPU cycles.
-  ;; It's use should thus be minimised as far as possible.
+  ;; Its use should thus be minimized as far as possible.
   (let ((paren-state (c-parse-state)))
     (or (not (c-most-enclosing-brace paren-state))
        (c-search-uplist-for-classkey paren-state))))
index 76f8d312c7c5469fd25dcd4220f87e7b6f0d79f6..21a830da9caf30ed7bd2a76911219da6a7de6d9e 100644 (file)
@@ -318,7 +318,7 @@ to be replaced will match a sequence of whitespace chars defined by the
 regexp in `search-whitespace-regexp'.
 
 If `replace-character-fold' is non-nil, matching uses character folding,
-i.e. it ignores diacriticals and other differences between equivalent
+i.e. it ignores diacritics and other differences between equivalent
 character strings.
 
 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
@@ -563,7 +563,7 @@ to be replaced will match a sequence of whitespace chars defined by the
 regexp in `search-whitespace-regexp'.
 
 If `replace-character-fold' is non-nil, matching uses character folding,
-i.e. it ignores diacriticals and other differences between equivalent
+i.e. it ignores diacritics and other differences between equivalent
 character strings.
 
 Third arg DELIMITED (prefix arg if interactive), if non-nil, means replace
index 247cc4ab3ebe1dddfaa18008b74299d352f4fbff..d12fce8934eb9f44dc42c96ec6751d262b949367 100644 (file)
@@ -39,7 +39,7 @@
 #    dllexport
 #    init_priority
 #
-#   Unsuppored variable attributes will be tested against a global integer
+#   Unsupported variable attributes will be tested against a global integer
 #   variable and without any arguments given to the attribute itself; the
 #   result of this check might be wrong or meaningless so use with care.
 #
index b0c535cdd72c41d7f4960fc03004d7473339745e..184c737652a3a8b3143caa297f0843774d3af28d 100644 (file)
@@ -116,7 +116,7 @@ Fmod_test_non_local_exit_funcall (emacs_env *env, ptrdiff_t nargs,
 }
 
 
-/* Return a global referrence.  */
+/* Return a global reference.  */
 static emacs_value
 Fmod_test_globref_make (emacs_env *env, ptrdiff_t nargs, emacs_value args[],
                        void *data)
index 2210030ecd649231ea3856e7251932f26c22793b..7c96f27fee1e58919829ef7d9fcd3b0fcc05bb8e 100755 (executable)
@@ -121,7 +121,7 @@ def main():
     initp = subp.add_parser('init', help='create a test module from a template')
     initp.add_argument('module', help='name of the new module')
     initp.add_argument('-f', '--fun', default='fun',
-                       help='overide name of the default function')
+                       help='override name of the default function')
     initp.set_defaults(func=cmd_init)
 
     args = mainp.parse_args()
index 4643a473c31240246522da1e905c0170fb035ad1..fd68f5370ad06a09a276b94af7bb0f7afe139798 100644 (file)
        (ns_draw_fringe_bitmap): Remove unused rowY.
        Change #if to COCOA && >= 10_6.
        (ns_draw_window_cursor): Remove unused overspill.
-       (ns_draw_underwave): width and x are EamcsCGFloat.
+       (ns_draw_underwave): width and x are EmacsCGFloat.
        (ns_draw_box): thickness is CGFloat.
        (ns_dumpglyphs_image): Change #if to COCOA && >= 10_6.
        (ns_send_appdefined): When NS_IMPL_GNUSTEP, redirect to main thread
index 7d68caddd56b00c38ab43439e5449335769ee594..ac12f8789a4fd2e84f1ee5a23b79492109b3b5db 100644 (file)
@@ -1074,7 +1074,7 @@ syms_of_module (void)
 {
   DEFSYM (Qmodule_refs_hash, "module-refs-hash");
   DEFVAR_LISP ("module-refs-hash", Vmodule_refs_hash,
-              doc: /* Module global referrence table.  */);
+              doc: /* Module global reference table.  */);
 
   Vmodule_refs_hash
     = make_hash_table (hashtest_eq, make_number (DEFAULT_HASH_SIZE),
index 7a618141c9c742c491defbc3b82f1acc1b3cc1c7..7e6e8efc478273658501dbcdebb6db44cd35fc8f 100644 (file)
@@ -75,7 +75,7 @@ typedef float EmacsCGFloat;
 /* #define NSTRACE_ENABLED 1          */
 
 
-/* When non-zero, trace output is enbled for all parts, except those
+/* When non-zero, trace output is enabled for all parts, except those
    explicitly disabled. */
 /* #define NSTRACE_ALL_GROUPS     1     */
 
index 5f22405cffcda8c7b5ba3605584525aededb55c6..36e08c60575f58da7df3a642656f7b6259aa3867 100644 (file)
@@ -1141,7 +1141,7 @@ ns_clip_to_row (struct window *w, struct glyph_row *row,
 
 /* ==========================================================================
 
-    Visibel bell and beep.
+    Visible bell and beep.
 
    ========================================================================== */
 
@@ -7029,7 +7029,7 @@ not_in_argv (NSString *arg)
 
 - (void)windowDidExitFullScreen /* provided for direct calls */
 {
-  NSTRACE ("[EamcsView windowDidExitFullScreen]");
+  NSTRACE ("[EmacsView windowDidExitFullScreen]");
   if (!FRAME_LIVE_P (emacsframe))
     {
       NSTRACE_MSG ("Ignored (frame dead)");