1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-01 20:06:00 +00:00

; Fix typos

This commit is contained in:
Stefan Kangas 2020-10-09 11:51:32 +02:00
parent 35478f3f76
commit 95e8c7d1d9
10 changed files with 20 additions and 20 deletions

View File

@ -3528,7 +3528,7 @@
Port to Solaris 8. Port to Solaris 8.
Without this change, 'configure' fails because the recently-added Without this change, 'configure' fails because the recently-added
wait3 prototype in config.h messes up later 'configure' tests. 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. no longer needed on hosts that are current porting targets.
* configure.ac (wait3, WRETCODE): Remove, fixing a FIXME. * configure.ac (wait3, WRETCODE): Remove, fixing a FIXME.
All uses changed to waitpid and WEXITSTATUS. All uses changed to waitpid and WEXITSTATUS.

View File

@ -65735,7 +65735,7 @@
2018-04-05 Tino Calancha <tino.calancha@gmail.com> 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 * test/lisp/net/secrets-tests.el: Require secrets.el if
and only if, Emacs has been compiled with dbusbind support. and only if, Emacs has been compiled with dbusbind support.
@ -71454,7 +71454,7 @@
In the macro expansion of the example above, right after: In the macro expansion of the example above, right after:
(setq k (+ k 1)) (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) (< k 2)
is still valid. is still valid.
@ -114927,7 +114927,7 @@
2017-01-28 Yuri D'Elia <wavexx@thregr.org> 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 * lisp/gnus/message.el (message-send): If the hook modifies
the message (mml tags or headers), we should check bcc on the the message (mml tags or headers), we should check bcc on the

View File

@ -16274,7 +16274,7 @@
(c-guess-basic-syntax): Adapt case 5B for the new (c-guess-basic-syntax): Adapt case 5B for the new
`c-just-after-func-arglist-p'. Merge cases 5B.1 and 5B.3. `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). covers all cases now).
* progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'. * progmodes/cc-defs.el (c-point): Add `bosws' and `eosws'.
@ -32889,7 +32889,7 @@
2005-01-14 Nick Roberts <nickrob@snap.net.nz> 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. more carefully.
2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca> 2005-01-13 Stefan Monnier <monnier@iro.umontreal.ca>

View File

@ -6540,8 +6540,8 @@
(newsticker--image-get): New arguments FILENAME and DIRECTORY. (newsticker--image-get): New arguments FILENAME and DIRECTORY.
Use `url-retrieve' if `newsticker-retrieval-method' is 'intern. Use `url-retrieve' if `newsticker-retrieval-method' is 'intern.
(newsticker--image-download-by-wget): New. Use process properties (newsticker--image-download-by-wget): New. Use process properties
for storing informations. for storing information.
(newsticker--image-sentinel): Read informations from process properties. (newsticker--image-sentinel): Read information from process properties.
(newsticker--image-save) (newsticker--image-save)
(newsticker--image-remove) (newsticker--image-remove)
(newsticker--image-download-by-url) (newsticker--image-download-by-url)

View 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) (make-variable-buffer-local 'semantic-parse-tree-state)
(defmacro semantic-parse-tree-unparseable () (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 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." a rebuild. This state will be changed when the user edits the buffer."
'(setq semantic-parse-tree-state 'unparseable)) '(setq semantic-parse-tree-state 'unparseable))
(defmacro semantic-parse-tree-unparseable-p () (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)) '(eq semantic-parse-tree-state 'unparseable))
(defmacro semantic-parse-tree-set-needs-update () (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 If the buffer has not been parsed before, or if the incremental reparse
fails, then parse the entire buffer. fails, then parse the entire buffer.
If a lexical error had been previously discovered and the 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 (and
;; Is this a semantic enabled buffer? ;; Is this a semantic enabled buffer?
(semantic-active-p) (semantic-active-p)
;; Application hooks say the buffer is safe for parsing ;; Application hooks say the buffer is safe for parsing
(run-hook-with-args-until-failure (run-hook-with-args-until-failure
'semantic--before-fetch-tags-hook) '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. ;; then don't waste our time.
(not (semantic-parse-tree-unparseable-p)) (not (semantic-parse-tree-unparseable-p))
;; The parse tree actually needs to be refreshed ;; 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 ;; do them here, then all the bovination hooks are not run, and
;; we save lots of time. ;; we save lots of time.
(cond (cond
;; If the buffer was previously marked unparseable, ;; If the buffer was previously marked unparsable,
;; then don't waste our time. ;; then don't waste our time.
((semantic-parse-tree-unparseable-p) ((semantic-parse-tree-unparseable-p)
nil) nil)

View File

@ -10126,7 +10126,7 @@
2010-01-06 Jan Djärv <jan.h.d@swipnet.se> 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. for the driver if defined.
(QCuser_spec): New symbol. (QCuser_spec): New symbol.
(font_spec_from_name): Save name as user-spec. (font_spec_from_name): Save name as user-spec.

View File

@ -1835,7 +1835,7 @@ Z c-src/h.h 100
\Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/ \Ealphaenumerate tex-src/texinfo.tex /^\\def\\Ealphaenumerate{\\Eenumerate}$/
\Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/ \Ecapsenumerate tex-src/texinfo.tex /^\\def\\Ecapsenumerate{\\Eenumerate}$/
\Ecartouche tex-src/texinfo.tex /^\\def\\Ecartouche{%$/ \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}%$/ \Edisplay tex-src/texinfo.tex /^\\def\\Edisplay{\\endgroup\\afterenvbreak}%$/
\Eexample tex-src/texinfo.tex /^\\def\\Eexample{\\Elisp}$/ \Eexample tex-src/texinfo.tex /^\\def\\Eexample{\\Elisp}$/
\Eflushleft tex-src/texinfo.tex /^\\def\\Eflushleft{\\endgroup\\afterenvbreak}%$/ \Eflushleft tex-src/texinfo.tex /^\\def\\Eflushleft{\\endgroup\\afterenvbreak}%$/

View File

@ -223,7 +223,7 @@ int WorkingDays(Date a, Date b){
return(wdays); 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; Date tmp;
int wdays=0; int wdays=0;
if ( ! a.set() ) if ( ! a.set() )

View File

@ -120,7 +120,7 @@ ord_intersect(>, Head1, Tail1, _, [Head2|Tail2]) :-
% ord_intersection(+Set1, +Set2, ?Intersection) % 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. % and Set2, provided that Set1 and Set2 are ordered sets.
ord_intersection([], _, []). ord_intersection([], _, []).
@ -144,7 +144,7 @@ ord_intersection3([Head2|Tail2], Head1, Tail1, Intersection) :-
% ord_intersection(+Set1, +Set2, ?Intersection, ?Difference) % ord_intersection(+Set1, +Set2, ?Intersection, ?Difference)
% is true when Intersection is the intersection of Set1 and Set2, % 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. % provided that Set1 and Set2 are ordered sets.
ord_intersection([], Set2, [], Set2). ord_intersection([], Set2, [], Set2).

View File

@ -1074,7 +1074,7 @@
\def\tablez #1#2#3#4#5#6{% \def\tablez #1#2#3#4#5#6{%
\aboveenvbreak % \aboveenvbreak %
\begingroup % \begingroup %
\def\Edescription{\Etable}% Neccessary kludge. \def\Edescription{\Etable}% Necessary kludge.
\let\itemindex=#1% \let\itemindex=#1%
\ifnum 0#3>0 \advance \leftskip by #3\mil \fi % \ifnum 0#3>0 \advance \leftskip by #3\mil \fi %
\ifnum 0#4>0 \tableindent=#4\mil \fi % \ifnum 0#4>0 \tableindent=#4\mil \fi %
@ -2937,7 +2937,7 @@
\setbox0=\hbox{\printednodename}% \setbox0=\hbox{\printednodename}%
\ifdim \wd0=0pt% \ifdim \wd0=0pt%
\def\printednodename{\ignorespaces #1}% \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. %%% appear inside the square brackets.
%\def\printednodename{#1-title}% %\def\printednodename{#1-title}%
\fi% \fi%