diff options
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/progmodes/cc-langs.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 67f892c9380..171ce3b0fdd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2008-09-02 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * progmodes/cc-langs.el (c-opt-op-identitier-prefix): Fix typo. | ||
| 4 | |||
| 1 | 2008-09-01 Glenn Morris <rgm@gnu.org> | 5 | 2008-09-01 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * vc-hooks.el (vc-previous-version): Move alias to vc.el. | 7 | * vc-hooks.el (vc-previous-version): Move alias to vc.el. |
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el index 4f706fc0fa7..0c0ab1ae3e2 100644 --- a/lisp/progmodes/cc-langs.el +++ b/lisp/progmodes/cc-langs.el | |||
| @@ -985,7 +985,7 @@ This regexp is assumed to not match any non-operator identifier." | |||
| 985 | ;; Note: the following alias is an old name which was a mis-spelling. It has | 985 | ;; Note: the following alias is an old name which was a mis-spelling. It has |
| 986 | ;; been corrected above and throughout cc-engine.el. It will be removed at | 986 | ;; been corrected above and throughout cc-engine.el. It will be removed at |
| 987 | ;; some release very shortly in the future. ACM, 2006-04-14. | 987 | ;; some release very shortly in the future. ACM, 2006-04-14. |
| 988 | (defalias 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix) | 988 | (defvaralias 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix) |
| 989 | (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix | 989 | (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix |
| 990 | "CC Mode 5.31.4, 2006-04-14") | 990 | "CC Mode 5.31.4, 2006-04-14") |
| 991 | 991 | ||