diff options
| author | Stefan Monnier | 2009-10-25 02:55:27 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-10-25 02:55:27 +0000 |
| commit | eefa91dbc077bec47247a7c32fe5d136323360ff (patch) | |
| tree | 3dfcf5be084bad565efd7f9f14fad2fe3430d940 | |
| parent | 7c85c02b812e427c3f5e41761ae5f44b18c34ea6 (diff) | |
| download | emacs-eefa91dbc077bec47247a7c32fe5d136323360ff.tar.gz emacs-eefa91dbc077bec47247a7c32fe5d136323360ff.zip | |
* cedet/semantic/fw.el (semantic-alias-obsolete)
(semantic-varalias-obsolete): Make the `when' arg mandatory.
(define-mode-overload-implementation):
* cedet/semantic/decorate/mode.el (semantic-decorate-pending-decoration-hooks):
* cedet/semantic/wisent.el (wisent-lex-make-token-table):
* cedet/semantic/util.el (semantic-file-token-stream)
(semantic-something-to-stream):
* cedet/semantic/tag.el (semantic-tag-make-assoc-list)
(semantic-expand-nonterminal):
* cedet/semantic/tag-file.el (semantic-find-nonterminal)
(semantic-find-dependency, semantic-find-nonterminal)
(semantic-find-dependency):
* cedet/semantic/lex.el (semantic-flex-start, semantic-flex-end)
(semantic-flex-text, semantic-flex-make-keyword-table)
(semantic-flex-keyword-p, semantic-flex-keyword-put)
(semantic-flex-keyword-get, semantic-flex-map-keywords)
(semantic-flex-keywords, semantic-flex-buffer, semantic-flex-list):
* cedet/semantic/java.el (semantic-java-prototype-nonterminal):
* cedet/semantic/idle.el (semantic-before-idle-scheduler-reparse-hooks)
(semantic-after-idle-scheduler-reparse-hooks):
* cedet/semantic/edit.el (semantic-edits-incremental-reparse-failed-hooks):
* cedet/semantic/db-mode.el (semanticdb-mode-hooks):
* cedet/semantic.el (semantic-toplevel-bovine-table)
(semantic-toplevel-bovine-cache)
(semantic-before-toplevel-bovination-hook, semantic-init-hooks)
(semantic-init-mode-hooks, semantic-init-db-hooks)
(semantic-bovination-working-type): Provide the `when' arg.
| -rw-r--r-- | lisp/cedet/semantic.el | 14 | ||||
| -rw-r--r-- | lisp/cedet/semantic/db-mode.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/decorate/mode.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/edit.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/fw.el | 6 | ||||
| -rw-r--r-- | lisp/cedet/semantic/idle.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/semantic/java.el | 2 | ||||
| -rw-r--r-- | lisp/cedet/semantic/lex.el | 22 | ||||
| -rw-r--r-- | lisp/cedet/semantic/tag-file.el | 8 | ||||
| -rw-r--r-- | lisp/cedet/semantic/tag.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/semantic/util.el | 4 | ||||
| -rw-r--r-- | lisp/cedet/semantic/wisent.el | 2 |
12 files changed, 36 insertions, 36 deletions
diff --git a/lisp/cedet/semantic.el b/lisp/cedet/semantic.el index 831041e74da..c6b53c0f559 100644 --- a/lisp/cedet/semantic.el +++ b/lisp/cedet/semantic.el | |||
| @@ -77,7 +77,7 @@ This variable is for internal use only, and its content depends on the | |||
| 77 | external parser used.") | 77 | external parser used.") |
| 78 | (make-variable-buffer-local 'semantic--parse-table) | 78 | (make-variable-buffer-local 'semantic--parse-table) |
| 79 | (semantic-varalias-obsolete 'semantic-toplevel-bovine-table | 79 | (semantic-varalias-obsolete 'semantic-toplevel-bovine-table |
| 80 | 'semantic--parse-table) | 80 | 'semantic--parse-table "23.2") |
| 81 | 81 | ||
| 82 | (defvar semantic-symbol->name-assoc-list | 82 | (defvar semantic-symbol->name-assoc-list |
| 83 | '((type . "Types") | 83 | '((type . "Types") |
| @@ -129,7 +129,7 @@ cached values for some reason, chances are you can, add a hook to | |||
| 129 | `semantic-after-toplevel-cache-change-hook'.") | 129 | `semantic-after-toplevel-cache-change-hook'.") |
| 130 | (make-variable-buffer-local 'semantic--buffer-cache) | 130 | (make-variable-buffer-local 'semantic--buffer-cache) |
| 131 | (semantic-varalias-obsolete 'semantic-toplevel-bovine-cache | 131 | (semantic-varalias-obsolete 'semantic-toplevel-bovine-cache |
| 132 | 'semantic--buffer-cache) | 132 | 'semantic--buffer-cache "23.2") |
| 133 | 133 | ||
| 134 | (defvar semantic-unmatched-syntax-cache nil | 134 | (defvar semantic-unmatched-syntax-cache nil |
| 135 | "A cached copy of unmatched syntax tokens.") | 135 | "A cached copy of unmatched syntax tokens.") |
| @@ -166,7 +166,7 @@ It is called before any request for tags is made via the function | |||
| 166 | If any hook returns a nil value, the cached value is returned | 166 | If any hook returns a nil value, the cached value is returned |
| 167 | immediately, even if it is empty.") | 167 | immediately, even if it is empty.") |
| 168 | (semantic-varalias-obsolete 'semantic-before-toplevel-bovination-hook | 168 | (semantic-varalias-obsolete 'semantic-before-toplevel-bovination-hook |
| 169 | 'semantic--before-fetch-tags-hook) | 169 | 'semantic--before-fetch-tags-hook "23.2") |
| 170 | 170 | ||
| 171 | (defvar semantic-after-toplevel-bovinate-hook nil | 171 | (defvar semantic-after-toplevel-bovinate-hook nil |
| 172 | "Hooks run after a toplevel parse. | 172 | "Hooks run after a toplevel parse. |
| @@ -298,11 +298,11 @@ This guarantees that the DB will go before other modes that require | |||
| 298 | a parse of the buffer.") | 298 | a parse of the buffer.") |
| 299 | 299 | ||
| 300 | (semantic-varalias-obsolete 'semantic-init-hooks | 300 | (semantic-varalias-obsolete 'semantic-init-hooks |
| 301 | 'semantic-init-hook) | 301 | 'semantic-init-hook "23.2") |
| 302 | (semantic-varalias-obsolete 'semantic-init-mode-hooks | 302 | (semantic-varalias-obsolete 'semantic-init-mode-hooks |
| 303 | 'semantic-init-mode-hook) | 303 | 'semantic-init-mode-hook "23.2") |
| 304 | (semantic-varalias-obsolete 'semantic-init-db-hooks | 304 | (semantic-varalias-obsolete 'semantic-init-db-hooks |
| 305 | 'semantic-init-db-hook) | 305 | 'semantic-init-db-hook "23.2") |
| 306 | 306 | ||
| 307 | (defvar semantic-new-buffer-fcn-was-run nil | 307 | (defvar semantic-new-buffer-fcn-was-run nil |
| 308 | "Non nil after `semantic-new-buffer-fcn' has been executed.") | 308 | "Non nil after `semantic-new-buffer-fcn' has been executed.") |
| @@ -550,7 +550,7 @@ is requested." | |||
| 550 | 'percent means we are doing a linear parse through the buffer. | 550 | 'percent means we are doing a linear parse through the buffer. |
| 551 | 'dynamic means we are reparsing specific tags.") | 551 | 'dynamic means we are reparsing specific tags.") |
| 552 | (semantic-varalias-obsolete 'semantic-bovination-working-type | 552 | (semantic-varalias-obsolete 'semantic-bovination-working-type |
| 553 | 'semantic-working-type) | 553 | 'semantic-working-type "23.2") |
| 554 | 554 | ||
| 555 | (defvar semantic-minimum-working-buffer-size (* 1024 5) | 555 | (defvar semantic-minimum-working-buffer-size (* 1024 5) |
| 556 | "*The minimum size of a buffer before working messages are displayed. | 556 | "*The minimum size of a buffer before working messages are displayed. |
diff --git a/lisp/cedet/semantic/db-mode.el b/lisp/cedet/semantic/db-mode.el index affe0ab6a21..5307e8958a4 100644 --- a/lisp/cedet/semantic/db-mode.el +++ b/lisp/cedet/semantic/db-mode.el | |||
| @@ -71,7 +71,7 @@ database, which can be saved for future Emacs sessions." | |||
| 71 | (defvaralias 'semanticdb-mode-hook 'global-semanticdb-minor-mode-hook) | 71 | (defvaralias 'semanticdb-mode-hook 'global-semanticdb-minor-mode-hook) |
| 72 | (defvaralias 'semanticdb-global-mode 'global-semanticdb-minor-mode) | 72 | (defvaralias 'semanticdb-global-mode 'global-semanticdb-minor-mode) |
| 73 | (semantic-varalias-obsolete 'semanticdb-mode-hooks | 73 | (semantic-varalias-obsolete 'semanticdb-mode-hooks |
| 74 | 'global-semanticdb-minor-mode-hook) | 74 | 'global-semanticdb-minor-mode-hook "23.2") |
| 75 | 75 | ||
| 76 | 76 | ||
| 77 | (defun semanticdb-toggle-global-mode () | 77 | (defun semanticdb-toggle-global-mode () |
diff --git a/lisp/cedet/semantic/decorate/mode.el b/lisp/cedet/semantic/decorate/mode.el index 00114890644..f0aad47141a 100644 --- a/lisp/cedet/semantic/decorate/mode.el +++ b/lisp/cedet/semantic/decorate/mode.el | |||
| @@ -197,7 +197,7 @@ Also make sure old decorations in the area are completely flushed." | |||
| 197 | "Normal hook run to perform pending decoration changes.") | 197 | "Normal hook run to perform pending decoration changes.") |
| 198 | 198 | ||
| 199 | (semantic-varalias-obsolete 'semantic-decorate-pending-decoration-hooks | 199 | (semantic-varalias-obsolete 'semantic-decorate-pending-decoration-hooks |
| 200 | 'semantic-decorate-pending-decoration-hook) | 200 | 'semantic-decorate-pending-decoration-hook "23.2") |
| 201 | 201 | ||
| 202 | (defun semantic-decorate-add-pending-decoration (fcn &optional buffer) | 202 | (defun semantic-decorate-add-pending-decoration (fcn &optional buffer) |
| 203 | "Add a pending decoration change represented by FCN. | 203 | "Add a pending decoration change represented by FCN. |
diff --git a/lisp/cedet/semantic/edit.el b/lisp/cedet/semantic/edit.el index 9a6b71a4d2a..ca5212fde62 100644 --- a/lisp/cedet/semantic/edit.el +++ b/lisp/cedet/semantic/edit.el | |||
| @@ -117,7 +117,7 @@ incremental reparse.") | |||
| 117 | When this happens, the buffer is marked as needing a full reparse.") | 117 | When this happens, the buffer is marked as needing a full reparse.") |
| 118 | 118 | ||
| 119 | (semantic-varalias-obsolete 'semantic-edits-incremental-reparse-failed-hooks | 119 | (semantic-varalias-obsolete 'semantic-edits-incremental-reparse-failed-hooks |
| 120 | 'semantic-edits-incremental-reparse-failed-hook) | 120 | 'semantic-edits-incremental-reparse-failed-hook "23.2") |
| 121 | 121 | ||
| 122 | (defcustom semantic-edits-verbose-flag nil | 122 | (defcustom semantic-edits-verbose-flag nil |
| 123 | "Non-nil means the incremental parser is verbose. | 123 | "Non-nil means the incremental parser is verbose. |
diff --git a/lisp/cedet/semantic/fw.el b/lisp/cedet/semantic/fw.el index 95eb4b6e453..1c8d2804202 100644 --- a/lisp/cedet/semantic/fw.el +++ b/lisp/cedet/semantic/fw.el | |||
| @@ -148,7 +148,7 @@ Remove self from `post-command-hook' if it is empty." | |||
| 148 | (intern (substring sym-name (match-end 0))) | 148 | (intern (substring sym-name (match-end 0))) |
| 149 | name))) | 149 | name))) |
| 150 | 150 | ||
| 151 | (defun semantic-alias-obsolete (oldfnalias newfn &optional when) | 151 | (defun semantic-alias-obsolete (oldfnalias newfn when) |
| 152 | "Make OLDFNALIAS an alias for NEWFN. | 152 | "Make OLDFNALIAS an alias for NEWFN. |
| 153 | Mark OLDFNALIAS as obsolete, such that the byte compiler | 153 | Mark OLDFNALIAS as obsolete, such that the byte compiler |
| 154 | will throw a warning when it encounters this symbol." | 154 | will throw a warning when it encounters this symbol." |
| @@ -169,7 +169,7 @@ will throw a warning when it encounters this symbol." | |||
| 169 | (semantic-overload-symbol-from-function oldfnalias)) | 169 | (semantic-overload-symbol-from-function oldfnalias)) |
| 170 | )) | 170 | )) |
| 171 | 171 | ||
| 172 | (defun semantic-varalias-obsolete (oldvaralias newvar &optional when) | 172 | (defun semantic-varalias-obsolete (oldvaralias newvar when) |
| 173 | "Make OLDVARALIAS an alias for variable NEWVAR. | 173 | "Make OLDVARALIAS an alias for variable NEWVAR. |
| 174 | Mark OLDVARALIAS as obsolete, such that the byte compiler | 174 | Mark OLDVARALIAS as obsolete, such that the byte compiler |
| 175 | will throw a warning when it encounters this symbol." | 175 | will throw a warning when it encounters this symbol." |
| @@ -219,7 +219,7 @@ FUNCTION does not have arguments. When FUNCTION is entered | |||
| 219 | (defalias 'semantic-map-mode-buffers 'mode-local-map-mode-buffers) | 219 | (defalias 'semantic-map-mode-buffers 'mode-local-map-mode-buffers) |
| 220 | 220 | ||
| 221 | (semantic-alias-obsolete 'define-mode-overload-implementation | 221 | (semantic-alias-obsolete 'define-mode-overload-implementation |
| 222 | 'define-mode-local-override) | 222 | 'define-mode-local-override "23.2") |
| 223 | 223 | ||
| 224 | (defun semantic-install-function-overrides (overrides &optional transient mode) | 224 | (defun semantic-install-function-overrides (overrides &optional transient mode) |
| 225 | "Install the function OVERRIDES in the specified environment. | 225 | "Install the function OVERRIDES in the specified environment. |
diff --git a/lisp/cedet/semantic/idle.el b/lisp/cedet/semantic/idle.el index 45f804b62a7..38811634670 100644 --- a/lisp/cedet/semantic/idle.el +++ b/lisp/cedet/semantic/idle.el | |||
| @@ -493,9 +493,9 @@ If any hook function throws an error, this variable is reset to nil. | |||
| 493 | This hook is not protected from lexical errors.") | 493 | This hook is not protected from lexical errors.") |
| 494 | 494 | ||
| 495 | (semantic-varalias-obsolete 'semantic-before-idle-scheduler-reparse-hooks | 495 | (semantic-varalias-obsolete 'semantic-before-idle-scheduler-reparse-hooks |
| 496 | 'semantic-before-idle-scheduler-reparse-hook) | 496 | 'semantic-before-idle-scheduler-reparse-hook "23.2") |
| 497 | (semantic-varalias-obsolete 'semantic-after-idle-scheduler-reparse-hooks | 497 | (semantic-varalias-obsolete 'semantic-after-idle-scheduler-reparse-hooks |
| 498 | 'semantic-after-idle-scheduler-reparse-hook) | 498 | 'semantic-after-idle-scheduler-reparse-hook "23.2") |
| 499 | 499 | ||
| 500 | (defun semantic-idle-scheduler-refresh-tags () | 500 | (defun semantic-idle-scheduler-refresh-tags () |
| 501 | "Refreshes the current buffer's tags. | 501 | "Refreshes the current buffer's tags. |
diff --git a/lisp/cedet/semantic/java.el b/lisp/cedet/semantic/java.el index bd37a937071..fcdd63ef490 100644 --- a/lisp/cedet/semantic/java.el +++ b/lisp/cedet/semantic/java.el | |||
| @@ -232,7 +232,7 @@ Optional argument COLOR indicates that color should be mixed in." | |||
| 232 | tag parent color))) | 232 | tag parent color))) |
| 233 | 233 | ||
| 234 | (semantic-alias-obsolete 'semantic-java-prototype-nonterminal | 234 | (semantic-alias-obsolete 'semantic-java-prototype-nonterminal |
| 235 | 'semantic-format-tag-prototype-java-mode) | 235 | 'semantic-format-tag-prototype-java-mode "23.2") |
| 236 | 236 | ||
| 237 | ;; Include Tag Name | 237 | ;; Include Tag Name |
| 238 | ;; | 238 | ;; |
diff --git a/lisp/cedet/semantic/lex.el b/lisp/cedet/semantic/lex.el index 03545ff1327..54e4ef44eda 100644 --- a/lisp/cedet/semantic/lex.el +++ b/lisp/cedet/semantic/lex.el | |||
| @@ -1752,17 +1752,17 @@ If there is no error, then the last value of FORMS is returned." | |||
| 1752 | ;; | 1752 | ;; |
| 1753 | ;; NOTE: DELETE THIS SOMEDAY SOON | 1753 | ;; NOTE: DELETE THIS SOMEDAY SOON |
| 1754 | 1754 | ||
| 1755 | (semantic-alias-obsolete 'semantic-flex-start 'semantic-lex-token-start) | 1755 | (semantic-alias-obsolete 'semantic-flex-start 'semantic-lex-token-start "23.2") |
| 1756 | (semantic-alias-obsolete 'semantic-flex-end 'semantic-lex-token-end) | 1756 | (semantic-alias-obsolete 'semantic-flex-end 'semantic-lex-token-end "23.2") |
| 1757 | (semantic-alias-obsolete 'semantic-flex-text 'semantic-lex-token-text) | 1757 | (semantic-alias-obsolete 'semantic-flex-text 'semantic-lex-token-text "23.2") |
| 1758 | (semantic-alias-obsolete 'semantic-flex-make-keyword-table 'semantic-lex-make-keyword-table) | 1758 | (semantic-alias-obsolete 'semantic-flex-make-keyword-table 'semantic-lex-make-keyword-table "23.2") |
| 1759 | (semantic-alias-obsolete 'semantic-flex-keyword-p 'semantic-lex-keyword-p) | 1759 | (semantic-alias-obsolete 'semantic-flex-keyword-p 'semantic-lex-keyword-p "23.2") |
| 1760 | (semantic-alias-obsolete 'semantic-flex-keyword-put 'semantic-lex-keyword-put) | 1760 | (semantic-alias-obsolete 'semantic-flex-keyword-put 'semantic-lex-keyword-put "23.2") |
| 1761 | (semantic-alias-obsolete 'semantic-flex-keyword-get 'semantic-lex-keyword-get) | 1761 | (semantic-alias-obsolete 'semantic-flex-keyword-get 'semantic-lex-keyword-get "23.2") |
| 1762 | (semantic-alias-obsolete 'semantic-flex-map-keywords 'semantic-lex-map-keywords) | 1762 | (semantic-alias-obsolete 'semantic-flex-map-keywords 'semantic-lex-map-keywords "23.2") |
| 1763 | (semantic-alias-obsolete 'semantic-flex-keywords 'semantic-lex-keywords) | 1763 | (semantic-alias-obsolete 'semantic-flex-keywords 'semantic-lex-keywords "23.2") |
| 1764 | (semantic-alias-obsolete 'semantic-flex-buffer 'semantic-lex-buffer) | 1764 | (semantic-alias-obsolete 'semantic-flex-buffer 'semantic-lex-buffer "23.2") |
| 1765 | (semantic-alias-obsolete 'semantic-flex-list 'semantic-lex-list) | 1765 | (semantic-alias-obsolete 'semantic-flex-list 'semantic-lex-list "23.2") |
| 1766 | 1766 | ||
| 1767 | ;; This simple scanner uses the syntax table to generate a stream of | 1767 | ;; This simple scanner uses the syntax table to generate a stream of |
| 1768 | ;; simple tokens of the form: | 1768 | ;; simple tokens of the form: |
diff --git a/lisp/cedet/semantic/tag-file.el b/lisp/cedet/semantic/tag-file.el index 74720b481c3..70d6b9cd688 100644 --- a/lisp/cedet/semantic/tag-file.el +++ b/lisp/cedet/semantic/tag-file.el | |||
| @@ -103,7 +103,7 @@ PARENT can also be a `semanticdb-table' object." | |||
| 103 | ) | 103 | ) |
| 104 | 104 | ||
| 105 | (make-obsolete-overload 'semantic-find-nonterminal | 105 | (make-obsolete-overload 'semantic-find-nonterminal |
| 106 | 'semantic-go-to-tag) | 106 | 'semantic-go-to-tag "23.2") |
| 107 | 107 | ||
| 108 | ;;; Dependencies | 108 | ;;; Dependencies |
| 109 | ;; | 109 | ;; |
| @@ -177,7 +177,7 @@ Depends on `semantic-dependency-include-path' for searching. Always searches | |||
| 177 | ))) | 177 | ))) |
| 178 | 178 | ||
| 179 | (make-obsolete-overload 'semantic-find-dependency | 179 | (make-obsolete-overload 'semantic-find-dependency |
| 180 | 'semantic-dependency-tag-file) | 180 | 'semantic-dependency-tag-file "23.2") |
| 181 | 181 | ||
| 182 | ;;; PROTOTYPE FILE | 182 | ;;; PROTOTYPE FILE |
| 183 | ;; | 183 | ;; |
| @@ -203,10 +203,10 @@ file prototypes belong in." | |||
| 203 | (match-string 1)))))) | 203 | (match-string 1)))))) |
| 204 | 204 | ||
| 205 | (semantic-alias-obsolete 'semantic-find-nonterminal | 205 | (semantic-alias-obsolete 'semantic-find-nonterminal |
| 206 | 'semantic-go-to-tag) | 206 | 'semantic-go-to-tag "23.2") |
| 207 | 207 | ||
| 208 | (semantic-alias-obsolete 'semantic-find-dependency | 208 | (semantic-alias-obsolete 'semantic-find-dependency |
| 209 | 'semantic-dependency-tag-file) | 209 | 'semantic-dependency-tag-file "23.2") |
| 210 | 210 | ||
| 211 | 211 | ||
| 212 | (provide 'semantic/tag-file) | 212 | (provide 'semantic/tag-file) |
diff --git a/lisp/cedet/semantic/tag.el b/lisp/cedet/semantic/tag.el index 44fbe764059..eb0d15181bf 100644 --- a/lisp/cedet/semantic/tag.el +++ b/lisp/cedet/semantic/tag.el | |||
| @@ -1350,10 +1350,10 @@ use `semantic-tag-type-superclass' \ | |||
| 1350 | and `semantic-tag-type-interfaces' instead" "23.2") | 1350 | and `semantic-tag-type-interfaces' instead" "23.2") |
| 1351 | 1351 | ||
| 1352 | (semantic-alias-obsolete 'semantic-tag-make-assoc-list | 1352 | (semantic-alias-obsolete 'semantic-tag-make-assoc-list |
| 1353 | 'semantic-tag-make-plist) | 1353 | 'semantic-tag-make-plist "23.2") |
| 1354 | 1354 | ||
| 1355 | (semantic-varalias-obsolete 'semantic-expand-nonterminal | 1355 | (semantic-varalias-obsolete 'semantic-expand-nonterminal |
| 1356 | 'semantic-tag-expand-function) | 1356 | 'semantic-tag-expand-function "23.2") |
| 1357 | 1357 | ||
| 1358 | (provide 'semantic/tag) | 1358 | (provide 'semantic/tag) |
| 1359 | 1359 | ||
diff --git a/lisp/cedet/semantic/util.el b/lisp/cedet/semantic/util.el index 6d3985e147b..126c587a801 100644 --- a/lisp/cedet/semantic/util.el +++ b/lisp/cedet/semantic/util.el | |||
| @@ -81,7 +81,7 @@ If FILE is not loaded, and semanticdb is not available, find the file | |||
| 81 | (semantic-fetch-tags)))))) | 81 | (semantic-fetch-tags)))))) |
| 82 | 82 | ||
| 83 | (semantic-alias-obsolete 'semantic-file-token-stream | 83 | (semantic-alias-obsolete 'semantic-file-token-stream |
| 84 | 'semantic-file-tag-table) | 84 | 'semantic-file-tag-table "23.2") |
| 85 | 85 | ||
| 86 | (defun semantic-something-to-tag-table (something) | 86 | (defun semantic-something-to-tag-table (something) |
| 87 | "Convert SOMETHING into a semantic tag table. | 87 | "Convert SOMETHING into a semantic tag table. |
| @@ -134,7 +134,7 @@ buffer, or a filename. If SOMETHING is nil return nil." | |||
| 134 | (t nil))) | 134 | (t nil))) |
| 135 | 135 | ||
| 136 | (semantic-alias-obsolete 'semantic-something-to-stream | 136 | (semantic-alias-obsolete 'semantic-something-to-stream |
| 137 | 'semantic-something-to-tag-table) | 137 | 'semantic-something-to-tag-table "23.2") |
| 138 | 138 | ||
| 139 | ;;; Recursive searching through dependency trees | 139 | ;;; Recursive searching through dependency trees |
| 140 | ;; | 140 | ;; |
diff --git a/lisp/cedet/semantic/wisent.el b/lisp/cedet/semantic/wisent.el index c83297106b4..25d5124ce3b 100644 --- a/lisp/cedet/semantic/wisent.el +++ b/lisp/cedet/semantic/wisent.el | |||
| @@ -48,7 +48,7 @@ When non-nil it is directly returned by `wisent-lex-function'.") | |||
| 48 | ;; Maintain this alias for compatibility until all WY grammars have | 48 | ;; Maintain this alias for compatibility until all WY grammars have |
| 49 | ;; been translated again to Elisp code. | 49 | ;; been translated again to Elisp code. |
| 50 | (semantic-alias-obsolete 'wisent-lex-make-token-table | 50 | (semantic-alias-obsolete 'wisent-lex-make-token-table |
| 51 | 'semantic-lex-make-type-table) | 51 | 'semantic-lex-make-type-table "23.2") |
| 52 | 52 | ||
| 53 | (defmacro wisent-lex-eoi () | 53 | (defmacro wisent-lex-eoi () |
| 54 | "Return an End-Of-Input lexical token. | 54 | "Return an End-Of-Input lexical token. |