aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2008-09-02 02:30:38 +0000
committerGlenn Morris2008-09-02 02:30:38 +0000
commitc97833f0ee2038fa1376ba20382b2219b4e1dee8 (patch)
tree19551620b67778f80146ee81464358eb0f784716
parentc441e59c8b9542a0391876e6ada61fe82a0dcef5 (diff)
downloademacs-c97833f0ee2038fa1376ba20382b2219b4e1dee8.tar.gz
emacs-c97833f0ee2038fa1376ba20382b2219b4e1dee8.zip
(c-opt-op-identitier-prefix): Fix typo.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/cc-langs.el2
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 @@
12008-09-02 Glenn Morris <rgm@gnu.org>
2
3 * progmodes/cc-langs.el (c-opt-op-identitier-prefix): Fix typo.
4
12008-09-01 Glenn Morris <rgm@gnu.org> 52008-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