diff options
| author | Karl Heuer | 1999-07-25 05:45:50 +0000 |
|---|---|---|
| committer | Karl Heuer | 1999-07-25 05:45:50 +0000 |
| commit | e4773f3943bfd08ad03ff075faf6d6d2e99edf4b (patch) | |
| tree | e632c0630a34714807ec4fc5ed3fdb90b1a12b54 | |
| parent | 694e6b248dedecb0e1806bd600f4b1bbc50dabc8 (diff) | |
| download | emacs-e4773f3943bfd08ad03ff075faf6d6d2e99edf4b.tar.gz emacs-e4773f3943bfd08ad03ff075faf6d6d2e99edf4b.zip | |
Delete compatibility code.
(edebug-next-token-class): If . is followed by a digit,
return `symbol' for the token class.
| -rw-r--r-- | lisp/emacs-lisp/edebug.el | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lisp/emacs-lisp/edebug.el b/lisp/emacs-lisp/edebug.el index 81ab472ad9d..517862358ce 100644 --- a/lisp/emacs-lisp/edebug.el +++ b/lisp/emacs-lisp/edebug.el | |||
| @@ -56,13 +56,6 @@ | |||
| 56 | 56 | ||
| 57 | (defconst edebug-version | 57 | (defconst edebug-version |
| 58 | (concat "In Emacs version " emacs-version)) | 58 | (concat "In Emacs version " emacs-version)) |
| 59 | |||
| 60 | (require 'backquote) | ||
| 61 | |||
| 62 | ;; Emacs 18 doesn't have defalias. | ||
| 63 | (eval-and-compile | ||
| 64 | (or (fboundp 'defalias) (fset 'defalias 'fset))) | ||
| 65 | |||
| 66 | 59 | ||
| 67 | ;;; Bug reporting | 60 | ;;; Bug reporting |
| 68 | 61 | ||
| @@ -753,7 +746,13 @@ or if an error occurs, leave point after it with mark at the original point." | |||
| 753 | ;; lparen, rparen, dot, quote, backquote, comma, string, char, vector, | 746 | ;; lparen, rparen, dot, quote, backquote, comma, string, char, vector, |
| 754 | ;; or symbol. | 747 | ;; or symbol. |
| 755 | (edebug-skip-whitespace) | 748 | (edebug-skip-whitespace) |
| 756 | (aref edebug-read-syntax-table (following-char))) | 749 | (if (and (eq (following-char) ?.) |
| 750 | (save-excursion | ||
| 751 | (forward-char 1) | ||
| 752 | (and (>= (following-char) ?0) | ||
| 753 | (<= (following-char) ?9)))) | ||
| 754 | 'symbol | ||
| 755 | (aref edebug-read-syntax-table (following-char)))) | ||
| 757 | 756 | ||
| 758 | 757 | ||
| 759 | (defun edebug-skip-whitespace () | 758 | (defun edebug-skip-whitespace () |