emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r114412: * lisp/cedet/semantic.el (semantic-new-buff


From: Glenn Morris
Subject: [Emacs-diffs] trunk r114412: * lisp/cedet/semantic.el (semantic-new-buffer-fcn-was-run, semantic-active-p):
Date: Fri, 20 Sep 2013 17:21:34 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 114412
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Fri 2013-09-20 13:21:28 -0400
message:
  * lisp/cedet/semantic.el (semantic-new-buffer-fcn-was-run, semantic-active-p):
  Move from here...
  * lisp/cedet/semantic/fw.el: ...to here.
modified:
  lisp/cedet/ChangeLog           changelog-20100919015713-3rbr456yray5m84f-1
  lisp/cedet/semantic.el         
semantic.el-20091113204419-o5vbwnq5f7feedwu-11234
  lisp/cedet/semantic/fw.el      fw.el-20091113204419-o5vbwnq5f7feedwu-11279
=== modified file 'lisp/cedet/ChangeLog'
--- a/lisp/cedet/ChangeLog      2013-09-18 05:00:26 +0000
+++ b/lisp/cedet/ChangeLog      2013-09-20 17:21:28 +0000
@@ -1,3 +1,9 @@
+2013-09-20  Glenn Morris  <address@hidden>
+
+       * semantic.el (semantic-new-buffer-fcn-was-run, semantic-active-p):
+       Move from here...
+       * semantic/fw.el: ...to here.
+
 2013-09-18  Glenn Morris  <address@hidden>
 
        * semantic/find.el (semantic-brute-find-first-tag-by-name):

=== modified file 'lisp/cedet/semantic.el'
--- a/lisp/cedet/semantic.el    2013-06-02 13:33:09 +0000
+++ b/lisp/cedet/semantic.el    2013-09-20 17:21:28 +0000
@@ -311,14 +311,6 @@
 (semantic-varalias-obsolete 'semantic-init-db-hooks
                            'semantic-init-db-hook "23.2")
 
-(defvar semantic-new-buffer-fcn-was-run nil
-  "Non-nil after `semantic-new-buffer-fcn' has been executed.")
-(make-variable-buffer-local 'semantic-new-buffer-fcn-was-run)
-
-(defsubst semantic-active-p ()
-  "Return non-nil if the current buffer was set up for parsing."
-  semantic-new-buffer-fcn-was-run)
-
 (defsubst semantic-error-if-unparsed ()
   "Raise an error if current buffer was not parsed by Semantic."
   (unless semantic-new-buffer-fcn-was-run

=== modified file 'lisp/cedet/semantic/fw.el'
--- a/lisp/cedet/semantic/fw.el 2013-09-05 00:22:45 +0000
+++ b/lisp/cedet/semantic/fw.el 2013-09-20 17:21:28 +0000
@@ -321,6 +321,15 @@
 
 ;;; Misc utilities
 ;;
+
+(defvar semantic-new-buffer-fcn-was-run nil
+  "Non-nil after `semantic-new-buffer-fcn' has been executed.")
+(make-variable-buffer-local 'semantic-new-buffer-fcn-was-run)
+
+(defsubst semantic-active-p ()
+  "Return non-nil if the current buffer was set up for parsing."
+  semantic-new-buffer-fcn-was-run)
+
 (defsubst semantic-map-buffers (function)
   "Run FUNCTION for each Semantic enabled buffer found.
 FUNCTION does not have arguments.  When FUNCTION is entered


reply via email to

[Prev in Thread] Current Thread [Next in Thread]