aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2008-10-08 17:29:33 +0000
committerJuanma Barranquero2008-10-08 17:29:33 +0000
commit6f040888a666d2e0f7ecec946fdb23bae370dc0c (patch)
tree263b61e32af20dd0e6d901fd1e32dd58caf3b8f3
parentb111d5d0542844e7043f28a2114dec29f3963e88 (diff)
downloademacs-6f040888a666d2e0f7ecec946fdb23bae370dc0c.tar.gz
emacs-6f040888a666d2e0f7ecec946fdb23bae370dc0c.zip
Fix typos.
-rw-r--r--lisp/ChangeLog36
1 files changed, 17 insertions, 19 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a63f16ee165..b9cc231498c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -26,9 +26,8 @@
26 26
272008-10-07 Shigeru Fukaya <shigeru.fukaya@gmail.com> 272008-10-07 Shigeru Fukaya <shigeru.fukaya@gmail.com>
28 28
29 * rx-new.el (rx-constituents): Change `anything' to call 29 * rx-new.el (rx-constituents): Change `anything' to call rx-anything.
30 rx-anything. Change `not-wordchar' assignment to "\\W" from 30 Change `not-wordchar' assignment to "\\W" from "[^[:word:]]".
31 "[^[:word:]]".
32 (rx-group-if): New function. 31 (rx-group-if): New function.
33 (rx-parent): New variable. 32 (rx-parent): New variable.
34 (rx-and, rx-or): Put shy groups only when necessary. 33 (rx-and, rx-or): Put shy groups only when necessary.
@@ -36,27 +35,26 @@
36 (rx-anything): New function. 35 (rx-anything): New function.
37 (rx-any-delete-from-range, rx-any-condense-range) 36 (rx-any-delete-from-range, rx-any-condense-range)
38 (rx-check-any-string): New functions. 37 (rx-check-any-string): New functions.
39 (rx-check-any): Return result as a list. Don't convert chars to 38 (rx-check-any): Return result as a list. Don't convert chars to
40 strings. Don't prepend "\\" to "^". Don't search for close 39 strings. Don't prepend "\\" to "^". Don't search for close bracket.
41 bracket. Check char category string. Call rx-form instead of 40 Check char category string. Call rx-form instead of rx-to-string.
42 rx-to-string.
43 (rx-any): Rebuid to complete the function. 41 (rx-any): Rebuid to complete the function.
44 (rx-check-not): Fix char category regexp pattern string. Call 42 (rx-check-not): Fix char category regexp pattern string.
45 rx-form instead of rx-to-string. 43 Call rx-form instead of rx-to-string.
46 (rx-not): Call rx-form instead of rx-to-string. Convert "[^]" to 44 (rx-not): Call rx-form instead of rx-to-string. Convert "[^]" to
47 "[^^]". Call regexp-quote for one char string when not called from 45 "[^^]". Call regexp-quote for one char string when not called from
48 rx-not. Add "\\w", and toggle to upcase. Add the case of 46 rx-not. Add "\\w", and toggle to upcase. Add the case of
49 "\\[SCBW]" to toggle. 47 "\\[SCBW]" to toggle.
50 (rx-=, rx->=, rx -**, rx-repeat, rx-submatch): Call rx-form 48 (rx-=, rx->=, rx-**, rx-repeat, rx-submatch): Call rx-form
51 instead of rx-to-string. 49 instead of rx-to-string.
52 (rx-kleene): Call rx-form instead of rx-to-string. Call 50 (rx-kleene): Call rx-form instead of rx-to-string.
53 rx-group-if to adjust putting of shy groups. 51 Call rx-group-if to adjust putting of shy groups.
54 (rx-atomic-p): Make check more precisely. 52 (rx-atomic-p): Make check more precisely.
55 (rx-eval, rx-greedy): Call rx-form instead of rx-to-string. 53 (rx-eval, rx-greedy): Call rx-form instead of rx-to-string.
56 (rx-regexp): Call rx-group-if. 54 (rx-regexp): Call rx-group-if.
57 (rx-form): New function. 55 (rx-form): New function.
58 (rx-to-string): Call rx-form, rx-group-if. Refine definition of 56 (rx-to-string): Call rx-form, rx-group-if.
59 NO-GROUP. 57 Refine definition of NO-GROUP.
60 58
612008-10-07 T. V. Raman <raman@users.sourceforge.net> (tiny change) 592008-10-07 T. V. Raman <raman@users.sourceforge.net> (tiny change)
62 60
@@ -148,7 +146,7 @@
1482008-10-04 Martin Rudalics <rudalics@gmx.at> 1462008-10-04 Martin Rudalics <rudalics@gmx.at>
149 147
150 * progmodes/compile.el (compilation-start): Make sure to move to 148 * progmodes/compile.el (compilation-start): Make sure to move to
151 point-max only when we are in the compilation buffer. (Bug#1073) 149 point-max only when we are in the compilation buffer. (Bug#1073)
152 150
1532008-10-04 Dan Nicolaescu <dann@ics.uci.edu> 1512008-10-04 Dan Nicolaescu <dann@ics.uci.edu>
154 152
@@ -248,7 +246,7 @@
248 * vc-hooks.el (vc-file-clearprops): Revert change from 2008-09-29. 246 * vc-hooks.el (vc-file-clearprops): Revert change from 2008-09-29.
249 (vc-file-not-found-hook): Check, that `buffer-file-name' is 247 (vc-file-not-found-hook): Check, that `buffer-file-name' is
250 non-nil. It is not clear, whether this is only fixing symptoms on 248 non-nil. It is not clear, whether this is only fixing symptoms on
251 an error. OTOH, in all other cases, the call of `vc-file-clearprops' 249 an error. OTOH, in all other cases, the call of `vc-file-clearprops'
252 is embedded by that check. So it might be TRT. Suggested by Dan 250 is embedded by that check. So it might be TRT. Suggested by Dan
253 Nicolaescu <dann@ics.uci.edu>. 251 Nicolaescu <dann@ics.uci.edu>.
254 252