]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos
authorStefan Kangas <stefan@marxist.se>
Fri, 9 Oct 2020 09:51:32 +0000 (11:51 +0200)
committerStefan Kangas <stefan@marxist.se>
Fri, 9 Oct 2020 09:53:21 +0000 (11:53 +0200)
ChangeLog.1
ChangeLog.3
lisp/ChangeLog.12
lisp/ChangeLog.17
lisp/cedet/semantic.el
src/ChangeLog.11
test/manual/etags/CTAGS.good
test/manual/etags/cp-src/functions.cpp
test/manual/etags/prol-src/ordsets.prolog
test/manual/etags/tex-src/texinfo.tex

index 1fb7b78fa6253deaa486915bc7b3f8211c6ee860..b01a316f741670dc8ed747ca05b4fa2e401c0ed6 100644 (file)
        Port to Solaris 8.
        Without this change, 'configure' fails because the recently-added
        wait3 prototype in config.h messes up later 'configure' tests.
-       Fix this problem by droping wait3 and WRETCODE, as they're
+       Fix this problem by dropping wait3 and WRETCODE, as they're
        no longer needed on hosts that are current porting targets.
        * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME.
        All uses changed to waitpid and WEXITSTATUS.
index 16e74f41be412b36b66acb006521e07b2210b1ad..c9aaedf30bd5838650b18ced29d8b5e4c9738a2a 100644 (file)
 
 2018-04-05  Tino Calancha  <tino.calancha@gmail.com>
 
-       Require secrets.el iif Emacs has dbusbind support
+       Require secrets.el if Emacs has dbusbind support
 
        * test/lisp/net/secrets-tests.el: Require secrets.el if
        and only if, Emacs has been compiled with dbusbind support.
        In the macro expansion of the example above, right after:
        (setq k (+ k 1))
 
-       evaluate the rest of the body forms iif the condition
+       evaluate the rest of the body forms if the condition
        (< k 2)
        is still valid.
 
 
 2017-01-28  Yuri D'Elia  <wavexx@thregr.org>
 
-       Subject: Check Bcc after the Messag hook has run
+       Subject: Check Bcc after the Message hook has run
 
        * lisp/gnus/message.el (message-send): If the hook modifies
        the message (mml tags or headers), we should check bcc on the
index a9d0067598ef13731153f6cd42b4a1fbb1f9630d..40aa8c4dc83c85b9e6415b81a592c9437c4b31aa 100644 (file)
 
        (c-guess-basic-syntax): Adapt case 5B for the new
        `c-just-after-func-arglist-p'.  Merge cases 5B.1 and 5B.3.
-       Remove cases 5D.1 and 5D.2 since they aren't trigged anymore (case 5B.1
+       Remove cases 5D.1 and 5D.2 since they aren't triggered anymore (case 5B.1
        covers all cases now).
 
        * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
 
 2005-01-14  Nick Roberts  <nickrob@snap.net.nz>
 
-       * xt-mouse.el (xterm-mouse-event): Compute window co-ordinates
+       * xt-mouse.el (xterm-mouse-event): Compute window coordinates
        more carefully.
 
 2005-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
index 1869f4e4c4af48dce02e684d6e5d6d245522922e..8039e3f28a32ce073ccb3780e8417fcdfe485743 100644 (file)
        (newsticker--image-get): New arguments FILENAME and DIRECTORY.
        Use `url-retrieve' if `newsticker-retrieval-method' is 'intern.
        (newsticker--image-download-by-wget): New.  Use process properties
-       for storing informations.
-       (newsticker--image-sentinel): Read informations from process properties.
+       for storing information.
+       (newsticker--image-sentinel): Read information from process properties.
        (newsticker--image-save)
        (newsticker--image-remove)
        (newsticker--image-download-by-url)
index 71321e12da327c9aa0ef92d280e01486ac931713..94bb7fa8befb75fe514a5176d0e1cb6fe3022f1d 100644 (file)
@@ -195,13 +195,13 @@ during a flush when the cache is given a new value of nil.")
 (make-variable-buffer-local 'semantic-parse-tree-state)
 
 (defmacro semantic-parse-tree-unparseable ()
-  "Indicate that the current buffer is unparseable.
+  "Indicate that the current buffer is unparsable.
 It is also true that the parse tree will need either updating or
 a rebuild.  This state will be changed when the user edits the buffer."
   '(setq semantic-parse-tree-state 'unparseable))
 
 (defmacro semantic-parse-tree-unparseable-p ()
-  "Return non-nil if the current buffer has been marked unparseable."
+  "Return non-nil if the current buffer has been marked unparsable."
   '(eq semantic-parse-tree-state 'unparseable))
 
 (defmacro semantic-parse-tree-set-needs-update ()
@@ -539,14 +539,14 @@ If the buffer cache is out of date, attempt an incremental reparse.
 If the buffer has not been parsed before, or if the incremental reparse
 fails, then parse the entire buffer.
 If a lexical error had been previously discovered and the buffer
-was marked unparseable, then do nothing, and return the cache."
+was marked unparsable, then do nothing, and return the cache."
   (and
    ;; Is this a semantic enabled buffer?
    (semantic-active-p)
    ;; Application hooks say the buffer is safe for parsing
    (run-hook-with-args-until-failure
     'semantic--before-fetch-tags-hook)
-   ;; If the buffer was previously marked unparseable,
+   ;; If the buffer was previously marked unparsable,
    ;; then don't waste our time.
    (not (semantic-parse-tree-unparseable-p))
    ;; The parse tree actually needs to be refreshed
@@ -617,7 +617,7 @@ Does nothing if the current buffer doesn't need reparsing."
   ;; do them here, then all the bovination hooks are not run, and
   ;; we save lots of time.
   (cond
-   ;; If the buffer was previously marked unparseable,
+   ;; If the buffer was previously marked unparsable,
    ;; then don't waste our time.
    ((semantic-parse-tree-unparseable-p)
     nil)
index 1086d1183a2f486962fee57ac1f113dc3aa80a8c..cf9e87a6a808e42d8fad76b3b56750b332ee4782 100644 (file)
 
 2010-01-06  Jan Djärv  <jan.h.d@swipnet.se>
 
-       * font.c (font_open_entity): Enable chache and call cached_font_ok
+       * font.c (font_open_entity): Enable cache and call cached_font_ok
        for the driver if defined.
        (QCuser_spec): New symbol.
        (font_spec_from_name): Save name as user-spec.
index 519315c6fdd796a1014e127f2b33fb878cc1fc46..5e582434a6275e01d3622bd1088415f5dc29a3c7 100644 (file)
@@ -1835,7 +1835,7 @@ Z c-src/h.h       100
 \Ealphaenumerate       tex-src/texinfo.tex     /^\\def\\Ealphaenumerate{\\Eenumerate}$/
 \Ecapsenumerate        tex-src/texinfo.tex     /^\\def\\Ecapsenumerate{\\Eenumerate}$/
 \Ecartouche    tex-src/texinfo.tex     /^\\def\\Ecartouche{%$/
-\Edescription  tex-src/texinfo.tex     /^\\def\\Edescription{\\Etable}% Neccessary kludge.$/
+\Edescription  tex-src/texinfo.tex     /^\\def\\Edescription{\\Etable}% Necessary kludge.$/
 \Edisplay      tex-src/texinfo.tex     /^\\def\\Edisplay{\\endgroup\\afterenvbreak}%$/
 \Eexample      tex-src/texinfo.tex     /^\\def\\Eexample{\\Elisp}$/
 \Eflushleft    tex-src/texinfo.tex     /^\\def\\Eflushleft{\\endgroup\\afterenvbreak}%$/
index 7c353d161a14c3c70355e0ac372142102e8802b2..ddd78f14d9ba2d513c9cbe48a92cd06cc25f1b7f 100644 (file)
@@ -223,7 +223,7 @@ int WorkingDays(Date a, Date b){
        return(wdays);
 }
 
-Date StartDay(Date a,int days){//Function to calculate the apropriate start day to finish in days working days
+Date StartDay(Date a,int days){//Function to calculate the appropriate start day to finish in days working days
        Date tmp;
        int wdays=0;
        if ( ! a.set() )
index 7192129fdce019e4f1ad5b4b2efa7de6ecdac848..0fa70f903f07c74ce28fdbc2c6944ce343cc502f 100644 (file)
@@ -120,7 +120,7 @@ ord_intersect(>, Head1, Tail1, _, [Head2|Tail2]) :-
 
 
 %   ord_intersection(+Set1, +Set2, ?Intersection)
-%   is true when Intersection is the intersecton of Set1
+%   is true when Intersection is the intersection of Set1
 %   and Set2, provided that Set1 and Set2 are ordered sets.
 
 ord_intersection([], _, []).
@@ -144,7 +144,7 @@ ord_intersection3([Head2|Tail2], Head1, Tail1, Intersection) :-
 
 %   ord_intersection(+Set1, +Set2, ?Intersection, ?Difference)
 %   is true when Intersection is the intersection of Set1 and Set2, 
-%   and Differens is Set2 \ Set1 (like in ord_union/4),
+%   and Difference is Set2 \ Set1 (like in ord_union/4),
 %    provided that Set1 and Set2 are ordered sets.
 
 ord_intersection([], Set2, [], Set2).
index cece96fac56499e94ae8ccaecf52ec03a1d027ba..8d84f513ba55f34ff1d1161fbf4529a1d00089b2 100644 (file)
@@ -1074,7 +1074,7 @@ July\or August\or September\or October\or November\or December\fi
 \def\tablez #1#2#3#4#5#6{%
 \aboveenvbreak %
 \begingroup %
-\def\Edescription{\Etable}% Neccessary kludge.
+\def\Edescription{\Etable}% Necessary kludge.
 \let\itemindex=#1%
 \ifnum 0#3>0 \advance \leftskip by #3\mil \fi %
 \ifnum 0#4>0 \tableindent=#4\mil \fi %
@@ -2937,7 +2937,7 @@ July\or August\or September\or October\or November\or December\fi
 \setbox0=\hbox{\printednodename}%
 \ifdim \wd0=0pt%
 \def\printednodename{\ignorespaces #1}%
-%%% Uncommment the following line to make the actual chapter or section title
+%%% Uncomment the following line to make the actual chapter or section title
 %%% appear inside the square brackets.
 %\def\printednodename{#1-title}%
 \fi%