diff options
| author | Juanma Barranquero | 2008-04-18 09:30:36 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-04-18 09:30:36 +0000 |
| commit | 781424c2f372d40d69d6aa77d62adc236e795323 (patch) | |
| tree | 035f1c5fd7701a3b43d2189e970fad5f497f416c | |
| parent | 5556875b184999982de635af7ae1371719699f7b (diff) | |
| download | emacs-781424c2f372d40d69d6aa77d62adc236e795323.tar.gz emacs-781424c2f372d40d69d6aa77d62adc236e795323.zip | |
(describe-char-after): Use `define-obsolete-function-alias'.
| -rw-r--r-- | lisp/descr-text.el | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lisp/descr-text.el b/lisp/descr-text.el index c3b249f9072..7b7a209451f 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el | |||
| @@ -220,13 +220,6 @@ At the time of writing it is at the URL | |||
| 220 | :type '(choice (const :tag "None" nil) | 220 | :type '(choice (const :tag "None" nil) |
| 221 | file)) | 221 | file)) |
| 222 | 222 | ||
| 223 | ;; We could convert the unidata file into a Lispy form once-for-all | ||
| 224 | ;; and distribute it for loading on demand. It might be made more | ||
| 225 | ;; space-efficient by splitting strings word-wise and replacing them | ||
| 226 | ;; with lists of symbols interned in a private obarray, e.g. | ||
| 227 | ;; "LATIN SMALL LETTER A" => '(LATIN SMALL LETTER A). | ||
| 228 | |||
| 229 | ;; Fixme: Check whether this needs updating for Unicode 4. | ||
| 230 | (defun describe-char-unicode-data (char) | 223 | (defun describe-char-unicode-data (char) |
| 231 | "Return a list of Unicode data for unicode CHAR. | 224 | "Return a list of Unicode data for unicode CHAR. |
| 232 | Each element is a list of a property description and the property value. | 225 | Each element is a list of a property description and the property value. |
| @@ -653,8 +646,7 @@ as well as widgets, buttons, overlays, and text properties." | |||
| 653 | (setq help-xref-stack-item (list 'help-insert-string (buffer-string))) | 646 | (setq help-xref-stack-item (list 'help-insert-string (buffer-string))) |
| 654 | (toggle-read-only 1))))) | 647 | (toggle-read-only 1))))) |
| 655 | 648 | ||
| 656 | (defalias 'describe-char-after 'describe-char) | 649 | (define-obsolete-function-alias 'describe-char-after 'describe-char "22.1") |
| 657 | (make-obsolete 'describe-char-after 'describe-char "22.1") | ||
| 658 | 650 | ||
| 659 | (provide 'descr-text) | 651 | (provide 'descr-text) |
| 660 | 652 | ||