aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2014-10-12 13:09:15 -0700
committerPaul Eggert2014-10-12 13:09:15 -0700
commitcc541e588a000c9aa6f4d732e95b67e2f01433d6 (patch)
treeb5a74167f1b7cf4f1a667dd731056ad769dbf9e3
parentdfbb4d511ee5b0a6234ffa393deaaaf56a2651b7 (diff)
downloademacs-cc541e588a000c9aa6f4d732e95b67e2f01433d6.tar.gz
emacs-cc541e588a000c9aa6f4d732e95b67e2f01433d6.zip
Spelling fixes.
-rw-r--r--admin/versioning2
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/org/org.el2
-rw-r--r--lisp/progmodes/cc-engine.el2
-rw-r--r--lisp/progmodes/cc-langs.el2
-rw-r--r--src/ChangeLog2
-rw-r--r--src/font.c17
-rw-r--r--src/keymap.c8
-rw-r--r--src/lread.c4
-rw-r--r--src/process.c6
-rw-r--r--test/ChangeLog2
11 files changed, 27 insertions, 28 deletions
diff --git a/admin/versioning b/admin/versioning
index 2b4d499fc0a..da547ee94ca 100644
--- a/admin/versioning
+++ b/admin/versioning
@@ -6,7 +6,7 @@ years. This file defines the current method, explains why it was
6chosen, and lightly documents the previous schemes. It was prompted 6chosen, and lightly documents the previous schemes. It was prompted
7by http://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00872.html. 7by http://lists.gnu.org/archive/html/emacs-devel/2014-09/msg00872.html.
8 8
9Releated info: 9Related info:
10- [[file:FOR-RELEASE][FOR-RELEASE]] 10- [[file:FOR-RELEASE][FOR-RELEASE]]
11- [[file:make-tarball.txt][make-tarball.txt]] 11- [[file:make-tarball.txt][make-tarball.txt]]
12 12
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2094fdc30cc..b07a6b0d851 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -3305,7 +3305,7 @@
3305 outside of ignored environments. 3305 outside of ignored environments.
3306 (tildify-build-regexp): Remove function since it is now 3306 (tildify-build-regexp): Remove function since it is now
3307 incorporated in `tildify-foreach-region-outside-env' where it is 3307 incorporated in `tildify-foreach-region-outside-env' where it is
3308 optimised and simplified by the use of `mapconcat'. 3308 optimized and simplified by the use of `mapconcat'.
3309 (tildify-tildify): Return number of substitutions made so that… 3309 (tildify-tildify): Return number of substitutions made so that…
3310 (tildify-count): …can be removed. 3310 (tildify-count): …can be removed.
3311 (tildify-find-env): Accept a new PAIRS argument which was 3311 (tildify-find-env): Accept a new PAIRS argument which was
@@ -3318,7 +3318,7 @@
3318 and instead using or. 3318 and instead using or.
3319 3319
3320 * textmodes/tildify.el (tildify-ignored-environments-alist): 3320 * textmodes/tildify.el (tildify-ignored-environments-alist):
3321 Optimise environments regexes 3321 Optimize environments regexes
3322 3322
3323 Each time beginning of an environment to ignore is found, 3323 Each time beginning of an environment to ignore is found,
3324 `tildify-find-env' needs to identify regexp for the ending 3324 `tildify-find-env' needs to identify regexp for the ending
@@ -3400,7 +3400,7 @@
3400 3400
3401 The most trivial fix would be to replace `expression' in the 3401 The most trivial fix would be to replace `expression' in the
3402 true-part of the if-statement with `aux', but instead, this commit 3402 true-part of the if-statement with `aux', but instead, this commit
3403 optimises `tildify-find-env' by changing it to use `mapconcat' 3403 optimizes `tildify-find-env' by changing it to use `mapconcat'
3404 rather than open-coded while-loop. 3404 rather than open-coded while-loop.
3405 3405
34062014-06-05 Mario Lang <mlang@delysid.org> 34062014-06-05 Mario Lang <mlang@delysid.org>
@@ -16622,7 +16622,7 @@
16622 16622
166232013-06-04 Alan Mackenzie <acm@muc.de> 166232013-06-04 Alan Mackenzie <acm@muc.de>
16624 16624
16625 Remove faulty optimisation from indentation calculation. 16625 Remove faulty optimization from indentation calculation.
16626 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate 16626 * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
16627 search limit based on 2000 characters back from indent-point. 16627 search limit based on 2000 characters back from indent-point.
16628 16628
diff --git a/lisp/org/org.el b/lisp/org/org.el
index 238f47fc1ad..05a26a80cbe 100644
--- a/lisp/org/org.el
+++ b/lisp/org/org.el
@@ -7571,7 +7571,7 @@ headline or the item and create a new headline/item with the text
7571in the current line after point \(see `org-M-RET-may-split-line' 7571in the current line after point \(see `org-M-RET-may-split-line'
7572on how to modify this behavior). 7572on how to modify this behavior).
7573 7573
7574With one universal prefirx argument, set the user option 7574With one universal prefix argument, set the user option
7575`org-insert-heading-respect-content' to t for the duration of 7575`org-insert-heading-respect-content' to t for the duration of
7576the command. This modifies the behavior described above in this 7576the command. This modifies the behavior described above in this
7577ways: on list items and at the beginning of normal lines, force 7577ways: on list items and at the beginning of normal lines, force
diff --git a/lisp/progmodes/cc-engine.el b/lisp/progmodes/cc-engine.el
index d17be71a2d1..9a2531d1e99 100644
--- a/lisp/progmodes/cc-engine.el
+++ b/lisp/progmodes/cc-engine.el
@@ -5162,7 +5162,7 @@ comment at the start of cc-engine.el for more info."
5162 ;; Now loop, one decl spot per iteration. We already have the first 5162 ;; Now loop, one decl spot per iteration. We already have the first
5163 ;; match in `cfd-match-pos'. 5163 ;; match in `cfd-match-pos'.
5164 (while (progn 5164 (while (progn
5165 ;; Go foward over "false matches", one per iteration. 5165 ;; Go forward over "false matches", one per iteration.
5166 (while (and 5166 (while (and
5167 (< cfd-match-pos cfd-limit) 5167 (< cfd-match-pos cfd-limit)
5168 5168
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el
index 16f1dbfc6d6..bab928ac5dd 100644
--- a/lisp/progmodes/cc-langs.el
+++ b/lisp/progmodes/cc-langs.el
@@ -1591,7 +1591,7 @@ properly."
1591;; The Emacs variables beginning-of-defun-function and end-of-defun-function 1591;; The Emacs variables beginning-of-defun-function and end-of-defun-function
1592;; will be set so that commands like `mark-defun' and `narrow-to-defun' work 1592;; will be set so that commands like `mark-defun' and `narrow-to-defun' work
1593;; right. In older Emacsen, the key sequences C-M-a and C-M-e are, however, 1593;; right. In older Emacsen, the key sequences C-M-a and C-M-e are, however,
1594;; bound directly to the CC Mode functions, allowing optimisation for large n. 1594;; bound directly to the CC Mode functions, allowing optimization for large n.
1595;; From Emacs 23, this isn't necessary any more, since n is passed to the two 1595;; From Emacs 23, this isn't necessary any more, since n is passed to the two
1596;; functions. 1596;; functions.
1597(c-lang-defconst beginning-of-defun-function 1597(c-lang-defconst beginning-of-defun-function
diff --git a/src/ChangeLog b/src/ChangeLog
index 46f50364890..e06406e3af0 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -10445,7 +10445,7 @@
10445 (imagemagick_get_animation_cache): Fix a double-free error. 10445 (imagemagick_get_animation_cache): Fix a double-free error.
10446 (imagemagick_load_image): Remove the ping_wand code, which only 10446 (imagemagick_load_image): Remove the ping_wand code, which only
10447 apparently saved time on invalid animated images, and slowed down 10447 apparently saved time on invalid animated images, and slowed down
10448 everything else. Optimise for the common case. 10448 everything else. Optimize for the common case.
10449 10449
104502013-08-16 Xue Fuqiao <xfq.free@gmail.com> 104502013-08-16 Xue Fuqiao <xfq.free@gmail.com>
10451 10451
diff --git a/src/font.c b/src/font.c
index d73aed76d40..08a25455cf8 100644
--- a/src/font.c
+++ b/src/font.c
@@ -1184,14 +1184,14 @@ font_parse_xlfd (char *name, ptrdiff_t len, Lisp_Object font)
1184 val = prop[XLFD_ENCODING_INDEX]; 1184 val = prop[XLFD_ENCODING_INDEX];
1185 if (! NILP (val)) 1185 if (! NILP (val))
1186 { 1186 {
1187 AUTO_STRING (stardash, "*-"); 1187 AUTO_STRING (star_dash, "*-");
1188 val = concat2 (stardash, SYMBOL_NAME (val)); 1188 val = concat2 (star_dash, SYMBOL_NAME (val));
1189 } 1189 }
1190 } 1190 }
1191 else if (NILP (prop[XLFD_ENCODING_INDEX])) 1191 else if (NILP (prop[XLFD_ENCODING_INDEX]))
1192 { 1192 {
1193 AUTO_STRING (dashstar, "-*"); 1193 AUTO_STRING (dash_star, "-*");
1194 val = concat2 (SYMBOL_NAME (val), dashstar); 1194 val = concat2 (SYMBOL_NAME (val), dash_star);
1195 } 1195 }
1196 else 1196 else
1197 { 1197 {
@@ -5028,7 +5028,7 @@ font_add_log (const char *action, Lisp_Object arg, Lisp_Object result)
5028 if (FONTP (arg)) 5028 if (FONTP (arg))
5029 { 5029 {
5030 Lisp_Object tail, elt; 5030 Lisp_Object tail, elt;
5031 AUTO_STRING (equalstr, "="); 5031 AUTO_STRING (equal, "=");
5032 5032
5033 val = Ffont_xlfd_name (arg, Qt); 5033 val = Ffont_xlfd_name (arg, Qt);
5034 for (tail = AREF (arg, FONT_EXTRA_INDEX); CONSP (tail); 5034 for (tail = AREF (arg, FONT_EXTRA_INDEX); CONSP (tail);
@@ -5038,16 +5038,15 @@ font_add_log (const char *action, Lisp_Object arg, Lisp_Object result)
5038 if (EQ (XCAR (elt), QCscript) 5038 if (EQ (XCAR (elt), QCscript)
5039 && SYMBOLP (XCDR (elt))) 5039 && SYMBOLP (XCDR (elt)))
5040 val = concat3 (val, SYMBOL_NAME (QCscript), 5040 val = concat3 (val, SYMBOL_NAME (QCscript),
5041 concat2 (equalstr, SYMBOL_NAME (XCDR (elt)))); 5041 concat2 (equal, SYMBOL_NAME (XCDR (elt))));
5042 else if (EQ (XCAR (elt), QClang) 5042 else if (EQ (XCAR (elt), QClang)
5043 && SYMBOLP (XCDR (elt))) 5043 && SYMBOLP (XCDR (elt)))
5044 val = concat3 (val, SYMBOL_NAME (QClang), 5044 val = concat3 (val, SYMBOL_NAME (QClang),
5045 concat2 (equalstr, SYMBOL_NAME (XCDR (elt)))); 5045 concat2 (equal, SYMBOL_NAME (XCDR (elt))));
5046 else if (EQ (XCAR (elt), QCotf) 5046 else if (EQ (XCAR (elt), QCotf)
5047 && CONSP (XCDR (elt)) && SYMBOLP (XCAR (XCDR (elt)))) 5047 && CONSP (XCDR (elt)) && SYMBOLP (XCAR (XCDR (elt))))
5048 val = concat3 (val, SYMBOL_NAME (QCotf), 5048 val = concat3 (val, SYMBOL_NAME (QCotf),
5049 concat2 (equalstr, 5049 concat2 (equal, SYMBOL_NAME (XCAR (XCDR (elt)))));
5050 SYMBOL_NAME (XCAR (XCDR (elt)))));
5051 } 5050 }
5052 arg = val; 5051 arg = val;
5053 } 5052 }
diff --git a/src/keymap.c b/src/keymap.c
index d633bdcaae7..c7c7d196c22 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -1339,8 +1339,8 @@ silly_event_symbol_error (Lisp_Object c)
1339 *p = 0; 1339 *p = 0;
1340 1340
1341 c = reorder_modifiers (c); 1341 c = reorder_modifiers (c);
1342 AUTO_STRING (new_modstring, new_mods); 1342 AUTO_STRING (new_mods_string, new_mods);
1343 keystring = concat2 (new_modstring, XCDR (assoc)); 1343 keystring = concat2 (new_mods_string, XCDR (assoc));
1344 1344
1345 error ("To bind the key %s, use [?%s], not [%s]", 1345 error ("To bind the key %s, use [?%s], not [%s]",
1346 SDATA (SYMBOL_NAME (c)), SDATA (keystring), 1346 SDATA (SYMBOL_NAME (c)), SDATA (keystring),
@@ -2245,9 +2245,9 @@ around function keys and event symbols. */)
2245 if (CONSP (key) && INTEGERP (XCAR (key)) && INTEGERP (XCDR (key))) 2245 if (CONSP (key) && INTEGERP (XCAR (key)) && INTEGERP (XCDR (key)))
2246 /* An interval from a map-char-table. */ 2246 /* An interval from a map-char-table. */
2247 { 2247 {
2248 AUTO_STRING (dotdot, ".."); 2248 AUTO_STRING (dot_dot, "..");
2249 return concat3 (Fsingle_key_description (XCAR (key), no_angles), 2249 return concat3 (Fsingle_key_description (XCAR (key), no_angles),
2250 dotdot, 2250 dot_dot,
2251 Fsingle_key_description (XCDR (key), no_angles)); 2251 Fsingle_key_description (XCDR (key), no_angles));
2252 } 2252 }
2253 2253
diff --git a/src/lread.c b/src/lread.c
index 59af12cf6da..171a51acb3f 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -3661,8 +3661,8 @@ read_list (bool flag, Lisp_Object readcharfun)
3661 We don't use Fexpand_file_name because that would make 3661 We don't use Fexpand_file_name because that would make
3662 the directory absolute now. */ 3662 the directory absolute now. */
3663 { 3663 {
3664 AUTO_STRING (dotdotlisp, "../lisp/"); 3664 AUTO_STRING (dot_dot_lisp, "../lisp/");
3665 elt = concat2 (dotdotlisp, Ffile_name_nondirectory (elt)); 3665 elt = concat2 (dot_dot_lisp, Ffile_name_nondirectory (elt));
3666 } 3666 }
3667 } 3667 }
3668 else if (EQ (elt, Vload_file_name) 3668 else if (EQ (elt, Vload_file_name)
diff --git a/src/process.c b/src/process.c
index f767ae05e96..0c36f8e18c3 100644
--- a/src/process.c
+++ b/src/process.c
@@ -4099,9 +4099,9 @@ server_accept_connection (Lisp_Object server, int channel)
4099#endif 4099#endif
4100 default: 4100 default:
4101 caller = Fnumber_to_string (make_number (connect_counter)); 4101 caller = Fnumber_to_string (make_number (connect_counter));
4102 AUTO_STRING (space_lessthan, " <"); 4102 AUTO_STRING (space_less_than, " <");
4103 AUTO_STRING (greaterthan, ">"); 4103 AUTO_STRING (greater_than, ">");
4104 caller = concat3 (space_lessthan, caller, greaterthan); 4104 caller = concat3 (space_less_than, caller, greater_than);
4105 break; 4105 break;
4106 } 4106 }
4107 4107
diff --git a/test/ChangeLog b/test/ChangeLog
index 5c2032e7e85..1ef5ee99775 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -313,7 +313,7 @@
313 313
3142014-06-05 Michal Nazarewicz <mina86@mina86.com> 3142014-06-05 Michal Nazarewicz <mina86@mina86.com>
315 315
316 * automated/tildify-tests.el (tildify-test--test): Optimise the test 316 * automated/tildify-tests.el (tildify-test--test): Optimize the test
317 slightly by reusing the same temporary buffer across multiple test 317 slightly by reusing the same temporary buffer across multiple test
318 cases. 318 cases.
319 319