diff options
| author | Stefan Monnier | 2009-12-07 16:53:48 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-12-07 16:53:48 +0000 |
| commit | e07278736e3103b4ad0ae01dfa1deaf2c2684e0e (patch) | |
| tree | 9bb9c5a7f8004e67f2334f8da536098f29f53284 | |
| parent | f82b1493b0806914f2bf73c41166687b16ebf251 (diff) | |
| download | emacs-e07278736e3103b4ad0ae01dfa1deaf2c2684e0e.tar.gz emacs-e07278736e3103b4ad0ae01dfa1deaf2c2684e0e.zip | |
(ucs-names): Fix last-minute paren-typo.
| -rw-r--r-- | lisp/international/mule-cmds.el | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lisp/international/mule-cmds.el b/lisp/international/mule-cmds.el index 57060ff9442..c13d96ec7b5 100644 --- a/lisp/international/mule-cmds.el +++ b/lisp/international/mule-cmds.el | |||
| @@ -2918,19 +2918,19 @@ on encoding." | |||
| 2918 | ;; We have to split the range. | 2918 | ;; We have to split the range. |
| 2919 | (push (cons first last) ranges) | 2919 | (push (cons first last) ranges) |
| 2920 | (setq first (setq last c))))) | 2920 | (setq first (setq last c))))) |
| 2921 | (cons (cons first last) ranges)))) | 2921 | (cons (cons first last) ranges))))) |
| 2922 | name names) | 2922 | name names) |
| 2923 | (dolist (range ranges) | 2923 | (dolist (range ranges) |
| 2924 | (let ((c (car range)) | 2924 | (let ((c (car range)) |
| 2925 | (end (cdr range))) | 2925 | (end (cdr range))) |
| 2926 | (while (<= c end) | 2926 | (while (<= c end) |
| 2927 | (if (setq name (get-char-code-property c 'name)) | 2927 | (if (setq name (get-char-code-property c 'name)) |
| 2928 | (push (cons name c) names) | 2928 | (push (cons name c) names) |
| 2929 | (error "Wrong range")) | 2929 | (error "Wrong range")) |
| 2930 | (if (setq name (get-char-code-property c 'old-name)) | 2930 | (if (setq name (get-char-code-property c 'old-name)) |
| 2931 | (push (cons name c) names)) | 2931 | (push (cons name c) names)) |
| 2932 | (setq c (1+ c))))) | 2932 | (setq c (1+ c))))) |
| 2933 | (setq ucs-names names))))) | 2933 | (setq ucs-names names)))) |
| 2934 | 2934 | ||
| 2935 | (defvar ucs-completions (lazy-completion-table ucs-completions ucs-names) | 2935 | (defvar ucs-completions (lazy-completion-table ucs-completions ucs-names) |
| 2936 | "Lazy completion table for completing on Unicode character names.") | 2936 | "Lazy completion table for completing on Unicode character names.") |