aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cedet/semantic
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/cedet/semantic')
-rw-r--r--lisp/cedet/semantic/bovine.el4
-rw-r--r--lisp/cedet/semantic/db-file.el2
-rw-r--r--lisp/cedet/semantic/wisent/comp.el2
3 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cedet/semantic/bovine.el b/lisp/cedet/semantic/bovine.el
index 1e52b1f8504..a6cf8d89a4f 100644
--- a/lisp/cedet/semantic/bovine.el
+++ b/lisp/cedet/semantic/bovine.el
@@ -143,14 +143,14 @@ list of semantic tokens found."
143 cvl nil ;re-init the collected value list. 143 cvl nil ;re-init the collected value list.
144 lte (car matchlist) ;Get the local matchlist entry. 144 lte (car matchlist) ;Get the local matchlist entry.
145 ) 145 )
146 (if (or (byte-code-function-p (car lte)) 146 (if (or (compiled-function-p (car lte))
147 (listp (car lte))) 147 (listp (car lte)))
148 ;; In this case, we have an EMPTY match! Make 148 ;; In this case, we have an EMPTY match! Make
149 ;; stuff up. 149 ;; stuff up.
150 (setq cvl (list nil)))) 150 (setq cvl (list nil))))
151 151
152 (while (and lte 152 (while (and lte
153 (not (byte-code-function-p (car lte))) 153 (not (compiled-function-p (car lte)))
154 (not (listp (car lte)))) 154 (not (listp (car lte))))
155 155
156 ;; GRAMMAR SOURCE DEBUGGING! 156 ;; GRAMMAR SOURCE DEBUGGING!
diff --git a/lisp/cedet/semantic/db-file.el b/lisp/cedet/semantic/db-file.el
index d00ab47ce69..e2c9d618ba2 100644
--- a/lisp/cedet/semantic/db-file.el
+++ b/lisp/cedet/semantic/db-file.el
@@ -29,7 +29,7 @@
29(require 'cedet-files) 29(require 'cedet-files)
30(require 'data-debug) 30(require 'data-debug)
31 31
32(defvar semanticdb-file-version semantic-version 32(defvar semanticdb-file-version "2.2"
33 "Version of semanticdb we are writing files to disk with.") 33 "Version of semanticdb we are writing files to disk with.")
34(defvar semanticdb-file-incompatible-version "1.4" 34(defvar semanticdb-file-incompatible-version "1.4"
35 "Version of semanticdb we are not reverse compatible with.") 35 "Version of semanticdb we are not reverse compatible with.")
diff --git a/lisp/cedet/semantic/wisent/comp.el b/lisp/cedet/semantic/wisent/comp.el
index 17cd3b1d59a..e24f6128a68 100644
--- a/lisp/cedet/semantic/wisent/comp.el
+++ b/lisp/cedet/semantic/wisent/comp.el
@@ -38,7 +38,7 @@
38;;; Code: 38;;; Code:
39(require 'semantic/wisent) 39(require 'semantic/wisent)
40(eval-when-compile (require 'cl-lib)) 40(eval-when-compile (require 'cl-lib))
41(eval-when-compile (require 'subr-x)) ; `string-pad' 41(require 'subr-x) ; `string-pad'
42 42
43;;;; ------------------- 43;;;; -------------------
44;;;; Misc. useful things 44;;;; Misc. useful things