comparison lisp/ChangeLog @ 98573:24e35179a467

Fix typos.
author Juanma Barranquero <lekktu@gmail.com>
date Wed, 08 Oct 2008 17:29:33 +0000
parents e2a4c50b0a78
children 5472a993dc3a
comparison
equal deleted inserted replaced
98572:e26dedf05927 98573:24e35179a467
24 init file error. 24 init file error.
25 (command-line-1): Remove init file error delay. 25 (command-line-1): Remove init file error delay.
26 26
27 2008-10-07 Shigeru Fukaya <shigeru.fukaya@gmail.com> 27 2008-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.
35 (rx-bracket): Remove. 34 (rx-bracket): Remove.
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
61 2008-10-07 T. V. Raman <raman@users.sourceforge.net> (tiny change) 59 2008-10-07 T. V. Raman <raman@users.sourceforge.net> (tiny change)
62 60
63 * json.el (json-advance): Use forward-char. 61 * json.el (json-advance): Use forward-char.
64 (json-skip-whitespace): Use skip-syntax-forward. 62 (json-skip-whitespace): Use skip-syntax-forward.
146 Fix typo. (Bug#1074) 144 Fix typo. (Bug#1074)
147 145
148 2008-10-04 Martin Rudalics <rudalics@gmx.at> 146 2008-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
153 2008-10-04 Dan Nicolaescu <dann@ics.uci.edu> 151 2008-10-04 Dan Nicolaescu <dann@ics.uci.edu>
154 152
155 * faces.el (x-create-frame-with-faces): Only setup the toolbar if 153 * faces.el (x-create-frame-with-faces): Only setup the toolbar if
156 tool-bar-mode is on. 154 tool-bar-mode is on.
246 2008-09-30 Michael Albinus <michael.albinus@gmx.de> 244 2008-09-30 Michael Albinus <michael.albinus@gmx.de>
247 245
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
255 2008-09-30 Eli Zaretskii <eliz@gnu.org> 253 2008-09-30 Eli Zaretskii <eliz@gnu.org>
256 254