summaryrefslogtreecommitdiff
path: root/lisp/cedet/semantic
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2022-05-22 12:22:40 -0400
committerStefan Monnier <monnier@iro.umontreal.ca>2022-05-22 12:22:40 -0400
commitd2e0d1452b976a51579cf044257326850804c562 (patch)
tree7a9523b384e9b3a17a61f112f8ae882a96d4b6bb /lisp/cedet/semantic
parent3294ad44ebcd024b4ada68d00bedca33acc52de6 (diff)
downloademacs-d2e0d1452b976a51579cf044257326850804c562.tar.gz
emacs-d2e0d1452b976a51579cf044257326850804c562.tar.bz2
emacs-d2e0d1452b976a51579cf044257326850804c562.zip
semantic-install-function-overrides: Declare obsolete
* lisp/cedet/semantic/fw.el (semantic-install-function-overrides): Declare obsolete.
Diffstat (limited to 'lisp/cedet/semantic')
-rw-r--r--lisp/cedet/semantic/fw.el1
-rw-r--r--lisp/cedet/semantic/grammar.el10
2 files changed, 6 insertions, 5 deletions
diff --git a/lisp/cedet/semantic/fw.el b/lisp/cedet/semantic/fw.el
index b7c3461a4d7..14ed3e97ed5 100644
--- a/lisp/cedet/semantic/fw.el
+++ b/lisp/cedet/semantic/fw.el
@@ -277,6 +277,7 @@ If optional argument MODE is non-nil, it must be a major mode symbol.
OVERRIDES will be installed globally for this major mode. If MODE is
nil, OVERRIDES will be installed locally in the current buffer. This
later installation should be done in MODE hook."
+ (declare (obsolete define-mode-local-override "29.1"))
(mode-local-bind
;; Add the semantic- prefix to OVERLOAD short names.
(mapcar
diff --git a/lisp/cedet/semantic/grammar.el b/lisp/cedet/semantic/grammar.el
index 74d4a229fac..d8cf6b2004a 100644
--- a/lisp/cedet/semantic/grammar.el
+++ b/lisp/cedet/semantic/grammar.el
@@ -880,7 +880,7 @@ Lisp code."
(unless (derived-mode-p 'emacs-lisp-mode)
(emacs-lisp-mode))
-;;;; Header + Prologue
+ ;; Header + Prologue
(insert header
" \n;;; Prologue\n;;\n"
@@ -892,7 +892,7 @@ Lisp code."
(save-excursion
-;;;; Declarations
+ ;; Declarations
(insert " \n;;; Declarations\n;;\n")
@@ -927,12 +927,12 @@ Lisp code."
(semantic-grammar-setup-data))
"Setup the Semantic Parser.")
-;;;; Analyzers
+ ;; Analyzers
(insert " \n;;; Analyzers\n;;\n")
(semantic-grammar-insert-defanalyzers)
-;;;; Epilogue & Footer
+ ;; Epilogue & Footer
(insert " \n;;; Epilogue\n;;\n"
epilogue
@@ -967,7 +967,7 @@ Lisp code."
;; have created this language for, and force them to call our
;; setup function again, refreshing all semantic data, and
;; enabling them to work with the new code just created.
-;;;; FIXME?
+ ;; FIXME?
;; At this point, I don't know any user's defined setup code :-(
;; At least, what I can do for now, is to run the generated
;; parser-install function.