diff options
| author | Dmitry Gutov | 2022-08-15 02:22:59 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2022-08-15 02:22:59 +0300 |
| commit | ee3a674c7c9e39fe7ff296ce1f9830fc45520de8 (patch) | |
| tree | e8ba1e7be54314f208454e80e3d31044c913f3eb /lisp/cedet/semantic | |
| parent | fe0e53d963899a16e0dd1bbc1ba10a6b59f7989e (diff) | |
| parent | 0a8e88fd83db5398d36064a7f87cff5b57da7284 (diff) | |
| download | emacs-scratch/font_lock_large_files.tar.gz emacs-scratch/font_lock_large_files.zip | |
Merge branch 'master' into scratch/font_lock_large_filesscratch/font_lock_large_files
Diffstat (limited to 'lisp/cedet/semantic')
| -rw-r--r-- | lisp/cedet/semantic/bovine.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/semantic/db-file.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/wisent/comp.el | 2 |
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 |