aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKim F. Storm2007-01-02 10:16:04 +0000
committerKim F. Storm2007-01-02 10:16:04 +0000
commitcd1059fb84f11206b32377bd159a19e84799410b (patch)
treede0e271914ac04c94b5c47be88b9f0a879f9bbf7 /lisp
parent5e52bbe093ac7093276c181b82744b030949cf7b (diff)
downloademacs-cd1059fb84f11206b32377bd159a19e84799410b.tar.gz
emacs-cd1059fb84f11206b32377bd159a19e84799410b.zip
*** empty log message ***
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog28
1 files changed, 0 insertions, 28 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ffd0e57ec40..f3e63124de1 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -13,56 +13,36 @@
13 the first continuation line in a macro gets the symbol 13 the first continuation line in a macro gets the symbol
14 `cpp-define-intro', the others getting `statement', or whatever. 14 `cpp-define-intro', the others getting `statement', or whatever.
15 15
162007-01-01 Alan Mackenzie <acm@muc.de>
17
18 * progmodes/cc-cmds.el (c-context-line-break): When invoked within 16 * progmodes/cc-cmds.el (c-context-line-break): When invoked within
19 a string, preserve whitespace. Add a backslash only when also in 17 a string, preserve whitespace. Add a backslash only when also in
20 a macro. 18 a macro.
21 19
222007-01-01 Alan Mackenzie <acm@muc.de>
23
24 * progmodes/cc-defs.el: Correct typos. 20 * progmodes/cc-defs.el: Correct typos.
25 21
262007-01-01 Alan Mackenzie <acm@muc.de>
27
28 * progmodes/cc-cmds.el (c-context-line-break): Don't indent the 22 * progmodes/cc-cmds.el (c-context-line-break): Don't indent the
29 new line after an escaped EOL in a string. 23 new line after an escaped EOL in a string.
30 24
312007-01-01 Alan Mackenzie <acm@muc.de>
32
33 * progmodes/cc-engine.el (c-forward-label): Recognise "foo:" as a 25 * progmodes/cc-engine.el (c-forward-label): Recognise "foo:" as a
34 label when it directly follows "else", "do", .... 26 label when it directly follows "else", "do", ....
35 27
362007-01-01 Alan Mackenzie <acm@muc.de>
37
38 * progmodes/cc-engine.el (c-backward-<>-arglist): Tolerate empty 28 * progmodes/cc-engine.el (c-backward-<>-arglist): Tolerate empty
39 angle brackets (as seen in "explicit specialisations" of C++ 29 angle brackets (as seen in "explicit specialisations" of C++
40 templates). 30 templates).
41 31
422007-01-01 Alan Mackenzie <acm@muc.de>
43
44 * progmodes/cc-vars.el (c-indentation-style): Mention c-file-style 32 * progmodes/cc-vars.el (c-indentation-style): Mention c-file-style
45 in the doc-string. 33 in the doc-string.
46 34
472007-01-01 Alan Mackenzie <acm@muc.de>
48
49 * progmodes/cc-cmds.el (c-mask-paragraph): Fix for C comments, 35 * progmodes/cc-cmds.el (c-mask-paragraph): Fix for C comments,
50 when the comment ender looks like "=========*/" and is alone on 36 when the comment ender looks like "=========*/" and is alone on
51 its line. 37 its line.
52 38
532007-01-01 Alan Mackenzie <acm@muc.de>
54
55 * progmodes/cc-langs.el, progmodes/cc-engine.el: Correct the 39 * progmodes/cc-langs.el, progmodes/cc-engine.el: Correct the
56 spelling of c-opt-op-identiTier-prefix, t -> f. Leave an alias 40 spelling of c-opt-op-identiTier-prefix, t -> f. Leave an alias
57 for the old name. 41 for the old name.
58 42
592007-01-01 Alan Mackenzie <acm@muc.de>
60
61 * progmodes/cc-mode.el: Bind C-M-a and C-M-e to 43 * progmodes/cc-mode.el: Bind C-M-a and C-M-e to
62 c-\(beginning\|end\)-of-defun by default. 44 c-\(beginning\|end\)-of-defun by default.
63 45
642007-01-01 Alan Mackenzie <acm@muc.de>
65
66 * progmodes/cc-align.el (c-lineup-gnu-DEFUN-intro-cont): New 46 * progmodes/cc-align.el (c-lineup-gnu-DEFUN-intro-cont): New
67 line-up function, for the DEFUN macro in the Emacs C sources. 47 line-up function, for the DEFUN macro in the Emacs C sources.
68 Only used in "gnu" style. 48 Only used in "gnu" style.
@@ -70,8 +50,6 @@
70 * progmodes/cc-styles.el (c-style-alist): Use this new function in 50 * progmodes/cc-styles.el (c-style-alist): Use this new function in
71 the "gnu" style. 51 the "gnu" style.
72 52
732007-01-01 Alan Mackenzie <acm@muc.de>
74
75 * progmodes/cc-cmds.el (c-electric-slash): Extend the handling of 53 * progmodes/cc-cmds.el (c-electric-slash): Extend the handling of
76 clean-up comment-close-slash also to work when there's a comment 54 clean-up comment-close-slash also to work when there's a comment
77 terminator on the line. 55 terminator on the line.
@@ -84,8 +62,6 @@
84 (c-backward-to-nth-BOF-{, c-forward-to-nth-EOF-}): New functions to 62 (c-backward-to-nth-BOF-{, c-forward-to-nth-EOF-}): New functions to
85 support c-\(beginning\|end\)-of-defun. 63 support c-\(beginning\|end\)-of-defun.
86 64
872007-01-01 Alan Mackenzie <acm@muc.de>
88
89 * progmodes/cc-engine.el (c-forward-label): Analyze ":" 65 * progmodes/cc-engine.el (c-forward-label): Analyze ":"
90 expressions more rigorously, to exclude bit-field specifiers from 66 expressions more rigorously, to exclude bit-field specifiers from
91 being classed as labels. 67 being classed as labels.
@@ -94,15 +70,11 @@
94 (c-beginning-of-decl-1): Whilst searching for "=" as evidence of a 70 (c-beginning-of-decl-1): Whilst searching for "=" as evidence of a
95 stmt boundary, check for "operator=", etc. 71 stmt boundary, check for "operator=", etc.
96 72
972007-01-01 Alan Mackenzie <acm@muc.de>
98
99 * progmodes/cc-mode.el (c-postprocess-file-styles): Bind 73 * progmodes/cc-mode.el (c-postprocess-file-styles): Bind
100 inhibit-read-only to t, around the call to 74 inhibit-read-only to t, around the call to
101 c-remove-any-local-eval-or-mode-variables, so that it works on a 75 c-remove-any-local-eval-or-mode-variables, so that it works on a
102 RO file. 76 RO file.
103 77
1042007-01-01 Alan Mackenzie <acm@muc.de>
105
106 * progmodes/cc-defs.el (c-version): Update the version number to 78 * progmodes/cc-defs.el (c-version): Update the version number to
107 "5.31.4". 79 "5.31.4".
108 80