]> git.eshelyaron.com Git - emacs.git/commitdiff
semantic-install-function-overrides: Declare obsolete
authorStefan Monnier <monnier@iro.umontreal.ca>
Sun, 22 May 2022 16:22:40 +0000 (12:22 -0400)
committerStefan Monnier <monnier@iro.umontreal.ca>
Sun, 22 May 2022 16:22:40 +0000 (12:22 -0400)
* lisp/cedet/semantic/fw.el (semantic-install-function-overrides):
Declare obsolete.

lisp/cedet/semantic/fw.el
lisp/cedet/semantic/grammar.el

index b7c3461a4d749ad858bbb82f89c25aabd486ab72..14ed3e97ed552363ae815b23a4afe11b12c3227c 100644 (file)
@@ -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
index 74d4a229facbc4b78d36e62e0831cc5b0adb0284..d8cf6b2004a5e9ab46a6d69f7807cb31df711518 100644 (file)
@@ -880,7 +880,7 @@ Lisp code."
       (unless (derived-mode-p 'emacs-lisp-mode)
         (emacs-lisp-mode))
 
-;;;; Header + Prologue
+      ;; Header + Prologue
 
       (insert header
               "\f\n;;; Prologue\n;;\n"
@@ -892,7 +892,7 @@ Lisp code."
 
       (save-excursion
 
-;;;; Declarations
+        ;; Declarations
 
         (insert "\f\n;;; Declarations\n;;\n")
 
@@ -927,12 +927,12 @@ Lisp code."
            (semantic-grammar-setup-data))
          "Setup the Semantic Parser.")
 
-;;;; Analyzers
+        ;; Analyzers
         (insert "\f\n;;; Analyzers\n;;\n")
 
         (semantic-grammar-insert-defanalyzers)
 
-;;;; Epilogue & Footer
+        ;; Epilogue & Footer
 
         (insert "\f\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.