]> code.delx.au - gnu-emacs/commitdiff
Spelling fixes
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 10 Nov 2015 18:22:29 +0000 (10:22 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 10 Nov 2015 18:23:00 +0000 (10:23 -0800)
* lisp/net/soap-inspect.el (soap-inspect-xs-simple-type):
Fix misspelling in output.

13 files changed:
ChangeLog.2
doc/lispref/variables.texi
lisp/ChangeLog.17
lisp/emacs-lisp/cl-generic.el
lisp/net/soap-client.el
lisp/net/soap-inspect.el
lisp/progmodes/project.el
lisp/vc/vc.el
src/alloc.c
src/nsterm.h
src/nsterm.m
src/window.c
test/etags/cp-src/clheir.hpp

index a915adbd80c6e9d89c34442fcd88903b9bcb3ee1..3636e382eb207ac7dffd7e2aa0a037a17bc20d13 100644 (file)
 
 2015-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
 
-       * lisp/emacs-lisp/cl-generic.el: Accomodate future changes.
+       * lisp/emacs-lisp/cl-generic.el: Accommodate future changes.
        (cl--generic-generalizer): Add `name' field.
        (cl-generic-make-generalizer): Add corresponding `name' argument.
        (cl-generic-define-generalizer): New macro.
 2015-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * lisp/progmodes/prolog.el: Improve handling of if/then/else.
-       (prolog-smie-rules): Accomodate standard if/then/else special
+       (prolog-smie-rules): Accommodate standard if/then/else special
        indentation.
        (prolog-mode): Add . to electric-indent-chars.
        (prolog-electric--if-then-else): Re-indent the line before adding space
index f49d5062f20736605c3ac6b0ff45190fe0a0c456..5a2cae0f6781fd6ce8733df37607b483b1a04dcc 100644 (file)
@@ -1790,7 +1790,7 @@ specify different values for the same variable, the file sorted after
 will override the value of the previous file (for instance, values in
 @file{.dir-locals2.el} override those in @file{.dir-locals.el}).  Note
 that, because of how lexicographic order works, values in
-@file{.dir-locals10.el} are overriden by values in @file{.dir-locals2.el}.
+@file{.dir-locals10.el} are overridden by values in @file{.dir-locals2.el}.
 This can be avoided by using @file{.dir-locals02.el} instead.
 @end defvr
 
index 8a255d756f1065a995f76f146a6d5b97c4599017..d717a4db62fd1270f44956a793bb6ba13be40013 100644 (file)
 2014-12-14  Steve Purcell  <steve@sanityinc.com>  (tiny change)
 
        * emacs-lisp/package.el (package-menu-mode): Use an extra column
-       for the "Version" column, to accomodate date-and-time-based versions.
+       for the "Version" column, to accommodate date-and-time-based versions.
 
 2014-12-14  Cameron Desautels  <camdez@gmail.com>
 
        (python-shell-prompt-detect)
        (python-shell-prompt-validate-regexps): New functions.
        (python-shell-prompt-set-calculated-regexps): New function.
-       (inferior-python-mode): Use it.  Also honor overriden
+       (inferior-python-mode): Use it.  Also honor overridden
        python-shell-interpreter and python-shell-interpreter-args.
-       (python-shell-make-comint): Honor overriden
+       (python-shell-make-comint): Honor overridden
        python-shell-interpreter and python-shell-interpreter-args.
        (python-shell-get-or-create-process): Make it testable by allowing
        to call run-python non-interactively.
 
        * faces.el (face-spec-recalc): Apply X resources only after the
        defface spec has been applied. Thus, X resources are no longer
-       overriden by the defface spec which also fixes issues on win32 where
+       overridden by the defface spec which also fixes issues on win32 where
        the toolbar coloring was wrong because it is set through X resources
-       and was (wrongfully) overriden.  (Bug#16694)
+       and was (wrongfully) overridden.  (Bug#16694)
 
 2014-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
 
index aae517e8ea713da767860e15f903577a6eb4db3d..9e6102c7300f549ad9e450b9e459f2a02d722250 100644 (file)
@@ -268,7 +268,7 @@ This macro can only be used within the lexical scope of a cl-generic method."
 
 (defmacro cl-generic-define-context-rewriter (name args &rest body)
   "Define a special kind of context named NAME.
-Whenever a context specializer of the form (NAME . ACTUALS) appears,
+Whenever a context specializer of the form (NAME . ARGS) appears,
 the specializer used will be the one returned by BODY."
   (declare (debug (&define name lambda-list def-body)) (indent defun))
   `(eval-and-compile
index 264a39c18995abe6477f99218a3db3d23c769256..83173250137ed692baa9db7e56c42957b0d3774e 100644 (file)
@@ -390,7 +390,7 @@ binding) but the same name."
 
 ;; SOAP WSDL documents use XML Schema to define the types that are part of the
 ;; message exchange.  We include here an XML schema model with a parser and
-;; serializer/deserialiser.
+;; serializer/deserializer.
 
 (defstruct (soap-xs-type (:include soap-element))
   id
@@ -710,7 +710,7 @@ This is a specialization of `soap-decode-type' for
 (defun soap-xs-element-type (element)
   "Retrieve the type of ELEMENT.
 This is normally stored in the TYPE^ slot, but if this element
-contains a reference, we retrive the type of the reference."
+contains a reference, retrieve the type of the reference."
   (if (soap-xs-element-reference element)
       (soap-xs-element-type (soap-xs-element-reference element))
     (soap-xs-element-type^ element)))
@@ -1989,7 +1989,7 @@ This is a specialization of `soap-decode-type' for
   )
 
 (defun soap-make-wsdl (origin)
-  "Create a new WSDL document, loaded from ORIGIN, and intialize it."
+  "Create a new WSDL document, loaded from ORIGIN, and initialize it."
   (let ((wsdl (soap-make-wsdl^ :origin origin)))
 
     ;; Add the XSD types to the wsdl document
index f6c7da6c7cd68be2354837791b0b03be7d1452d6..b01e2bf76f1b90ac7ee6fb1f25655b08b03f4d68 100644 (file)
@@ -334,7 +334,7 @@ soap-xs-attribute-group, in the current buffer."
       (insert "\t")
       (soap-insert-describe-button type)))
   (when (soap-xs-simple-type-enumeration type)
-    (insert "\nEnumeraton values: ")
+    (insert "\nEnumeration values: ")
     (dolist (e (soap-xs-simple-type-enumeration type))
       (insert "\n\t")
       (pp e)))
index 295e544044a158f93bea4739ebfd9b20348b4605..398339ee59014eec7d896257b16b4b4300373488 100644 (file)
@@ -108,7 +108,7 @@ Most often it's just one directory, which contains the project
 file and everything else in the project.  But in more advanced
 configurations, a project can span multiple directories.
 
-The rule of tumb for whether to include a directory here, and not
+The rule of thumb for whether to include a directory here, and not
 in `project-library-roots', is whether its contents are meant to
 be edited together with the rest of the project.
 
index efd816b4f0ebe9f53d2991ba7e88a783b5031351..178b5f0c0ceb1fd313cbd30548222478e823ce0e 100644 (file)
@@ -2071,7 +2071,7 @@ changes from the current branch."
 ;;;###autoload
 (defun vc-message-unresolved-conflicts (filename)
   "Display a message indicating unresolved conflicts in FILENAME."
-  ;; This enables all VC backends to give a standard, recognizeable
+  ;; This enables all VC backends to give a standard, recognizable
   ;; conflict message that indicates which file is conflicted.
   (message "There are unresolved conflicts in %s" filename))
 
index 81d644a16ad28c8ebcd8052d826e4e3993260dea..bee7cd1758db6cfdd1187829084a7a895ed283fe 100644 (file)
@@ -5346,7 +5346,7 @@ compact_font_cache_entry (Lisp_Object entry)
                 }
               if (CONSP (objlist))
                {
-                 /* Foiund a marked font, bail out.  */
+                 /* Found a marked font, bail out.  */
                  break;
                }
             }
index 3fb8cfc9cd878f1bf63dfcc54b2f9a5e7d15b43f..1b330f086366f93bf54ed369410a9e8f440c008b 100644 (file)
@@ -126,7 +126,7 @@ nsterm.m  : 6718: [ 4453]  | | | | +->> (X:0 Y:0)/(W:1600 H:1177)
 
    Here, "ns_fullscreen_hook" calls "handleFS", which is turn calls
    "performZoom".  This function calls "[super performZoom]", which
-   isn't annoted (so it doesn't show up in the trace).  However, it
+   isn't annotated (so it doesn't show up in the trace).  However, it
    calls "zoom" which is annotated so it is part of the call trace.
    Later, the method "windowWillUseStandardFrame" and the function
    "setFSValue" are called.  The lines with "+---" contain extra
@@ -230,7 +230,7 @@ void nstrace_leave(int *);
 
 /* Function enter macros.
 
-   NSTRACE (fmt, ...) -- Enable trace output in curent block
+   NSTRACE (fmt, ...) -- Enable trace output in current block
                          (typically a function).  Accepts printf-style
                          arguments.
 
index fabfa2914a0b868fd417173bd0201c09a02c287f..5e6c748433103b0abe977d46b130620dcffcc48e 100644 (file)
@@ -6353,7 +6353,7 @@ not_in_argv (NSString *arg)
 
   /* Restrict the new size to the text gird.
 
-     Don't restict the width if the user only adjusted the height, and
+     Don't restrict the width if the user only adjusted the height, and
      vice versa.  (Without this, the frame would shrink, and move
      slightly, if the window was resized by dragging one of its
      borders.) */
@@ -7591,7 +7591,7 @@ not_in_argv (NSString *arg)
 /* Constrain size and placement of a frame.
 
    By returning the original "frameRect", the frame is not
-   contrained. This can lead to unwanted situations where, for
+   constrained. This can lead to unwanted situations where, for
    example, the menu bar covers the frame.
 
    The default implementation (accessed using "super") constrains the
@@ -7647,7 +7647,7 @@ not_in_argv (NSString *arg)
 
 #if 0
   // Native zoom done using the standard zoom animation.  Size of the
-  // resulting frame reduced to accomodate the Dock and, if present,
+  // resulting frame reduced to accommodate the Dock and, if present,
   // the menu-bar.
   [super zoom:sender];
 
@@ -7661,8 +7661,8 @@ not_in_argv (NSString *arg)
   //
   // This works for all practical purposes.  (The only minor oddity is
   // when transiting from full-height frame to a maximized, the
-  // animation reduces the height of the frame slighty (to the 4
-  // pixels needed to accomodate the Doc) before it snaps back into
+  // animation reduces the height of the frame slightly (to the 4
+  // pixels needed to accommodate the Doc) before it snaps back into
   // full height.  The user would need a very trained eye to spot
   // this.)
   NSScreen * screen = [self screen];
@@ -7702,8 +7702,8 @@ not_in_argv (NSString *arg)
         }
     }
 #else
-  // Non-native zoom which is done instantaneous.  The resulting frame
-  // covert the entire scrren, except the menu-bar, if present.
+  // Non-native zoom which is done instantaneously.  The resulting frame
+  // covers the entire screen, except the menu-bar, if present.
   NSScreen * screen = [self screen];
   if (screen != nil)
     {
index 7c95ff9b16f1977133cc4ca3955b5d2df8aeaeb1..0ac76d418613bc59bcb161d02ae61c8db5a2c1eb 100644 (file)
@@ -210,7 +210,7 @@ wset_update_mode_line (struct window *w)
 {
   /* If this window is the selected window on its frame, set the
      global variable update_mode_lines, so that x_consider_frame_title
-     will consider this frame's title for rtedisplay.  */
+     will consider this frame's title for redisplay.  */
   Lisp_Object fselected_window = XFRAME (WINDOW_FRAME (w))->selected_window;
 
   if (WINDOWP (fselected_window) && XWINDOW (fselected_window) == w)
index a9245637413fcdc766aaea8ccbd179fb3f2398b9..55d91228fb34b81e780f36226760543f48896a38 100644 (file)
@@ -17,7 +17,7 @@ public:
     generic_object();  // enter generic_object into ObjectRegistry
     // We never copy generic_objects, so we don't need a copy constructor.
     ~generic_object(void);  // delete from ObjectRegistry
-    // Simulation steps, accomodate different kinds of time
+    // Simulation steps, accommodate different kinds of time
     virtual void compute_next_state(void) { }
     virtual void step(void) { }
     };