diff options
| author | Juanma Barranquero | 2013-07-08 00:50:34 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2013-07-08 00:50:34 +0200 |
| commit | ed095bd7585e92d2159c34a6ce23a909f68a1900 (patch) | |
| tree | 1031baa6a331321222616d5eb9b3c030d3ac5160 | |
| parent | f1e6674bb32058c7ef683d5f8f8ac67f99e96dd2 (diff) | |
| download | emacs-ed095bd7585e92d2159c34a6ce23a909f68a1900.tar.gz emacs-ed095bd7585e92d2159c34a6ce23a909f68a1900.zip | |
lisp/subr.el (read-quoted-char): Remove unused local variable `char'.
| -rw-r--r-- | lisp/ChangeLog | 14 | ||||
| -rw-r--r-- | lisp/subr.el | 2 |
2 files changed, 10 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cdc1b25c7ef..ed022001447 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,8 +1,12 @@ | |||
| 1 | 2013-07-07 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * subr.el (read-quoted-char): Remove unused local variable `char'. | ||
| 4 | |||
| 1 | 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu> | 5 | 2013-07-07 Michael Kifer <kifer@cs.stonybrook.edu> |
| 2 | 6 | ||
| 3 | * faces.el (tty-run-terminal-initialization): function changed (Stefan | 7 | * faces.el (tty-run-terminal-initialization): function changed (Stefan |
| 4 | Monnier's patch). | 8 | Monnier's patch). |
| 5 | 9 | ||
| 6 | * viper.el (viper-emacs-state-mode-list): add egg-status-buffer-mode. | 10 | * viper.el (viper-emacs-state-mode-list): add egg-status-buffer-mode. |
| 7 | (viper-version): version update. | 11 | (viper-version): version update. |
| 8 | (viper-go-away,viper-setup-hooks): function changed (Stefan Monnier's | 12 | (viper-go-away,viper-setup-hooks): function changed (Stefan Monnier's |
| @@ -10,15 +14,15 @@ | |||
| 10 | (viper--lookup-key,viper-catch-tty-ESC,viper-uncatch-tty-ESC, | 14 | (viper--lookup-key,viper-catch-tty-ESC,viper-uncatch-tty-ESC, |
| 11 | viper-setup-ESC-to-escape): new functions (Stefan Monnier's | 15 | viper-setup-ESC-to-escape): new functions (Stefan Monnier's |
| 12 | patch). | 16 | patch). |
| 13 | 17 | ||
| 14 | * viper-cmd.el: (viper-del-forward-char-in-insert): new function. | 18 | * viper-cmd.el: (viper-del-forward-char-in-insert): new function. |
| 15 | (viper-save-kill-buffer): check if buffer is modified. | 19 | (viper-save-kill-buffer): check if buffer is modified. |
| 16 | (viper-envelop-ESC-key): function deleted (Stefan Monnier's patch). | 20 | (viper-envelop-ESC-key): function deleted (Stefan Monnier's patch). |
| 17 | (viper-intercept-ESC-key): function changed (Stefan Monnier's patch). | 21 | (viper-intercept-ESC-key): function changed (Stefan Monnier's patch). |
| 18 | 22 | ||
| 19 | * viper-keym.el (viper-ESC-key): constant changed (Stefan Monnier's | 23 | * viper-keym.el (viper-ESC-key): constant changed (Stefan Monnier's |
| 20 | patch). | 24 | patch). |
| 21 | 25 | ||
| 22 | * ediff.el (ediff-files-command,ediff3-files-command): new functions. | 26 | * ediff.el (ediff-files-command,ediff3-files-command): new functions. |
| 23 | (ediff-merge-command,ediff-merge-with-ancestor-command): new functions. | 27 | (ediff-merge-command,ediff-merge-with-ancestor-command): new functions. |
| 24 | (ediff-directories-command,ediff-directories3-command): new functions. | 28 | (ediff-directories-command,ediff-directories3-command): new functions. |
| @@ -27,7 +31,7 @@ | |||
| 27 | All the above are command-line interfaces to ediff: facilitate calling | 31 | All the above are command-line interfaces to ediff: facilitate calling |
| 28 | Emacs with the appropriate ediff functions invoked. | 32 | Emacs with the appropriate ediff functions invoked. |
| 29 | (ediff-version): version update. | 33 | (ediff-version): version update. |
| 30 | 34 | ||
| 31 | 2013-07-07 Eli Zaretskii <eliz@gnu.org> | 35 | 2013-07-07 Eli Zaretskii <eliz@gnu.org> |
| 32 | 36 | ||
| 33 | * simple.el (default-font-height, window-screen-lines): New | 37 | * simple.el (default-font-height, window-screen-lines): New |
diff --git a/lisp/subr.el b/lisp/subr.el index 63fb1621b35..a0ad7227462 100644 --- a/lisp/subr.el +++ b/lisp/subr.el | |||
| @@ -1980,7 +1980,7 @@ any other terminator is used itself as input. | |||
| 1980 | The optional argument PROMPT specifies a string to use to prompt the user. | 1980 | The optional argument PROMPT specifies a string to use to prompt the user. |
| 1981 | The variable `read-quoted-char-radix' controls which radix to use | 1981 | The variable `read-quoted-char-radix' controls which radix to use |
| 1982 | for numeric input." | 1982 | for numeric input." |
| 1983 | (let ((message-log-max nil) done (first t) (code 0) char translated) | 1983 | (let ((message-log-max nil) done (first t) (code 0) translated) |
| 1984 | (while (not done) | 1984 | (while (not done) |
| 1985 | (let ((inhibit-quit first) | 1985 | (let ((inhibit-quit first) |
| 1986 | ;; Don't let C-h get the help message--only help function keys. | 1986 | ;; Don't let C-h get the help message--only help function keys. |