emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113318: lisp/subr.el (read-quoted-char): Remove unu


From: Juanma Barranquero
Subject: [Emacs-diffs] trunk r113318: lisp/subr.el (read-quoted-char): Remove unused local variable `char'.
Date: Sun, 07 Jul 2013 22:50:49 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113318
revision-id: address@hidden
parent: address@hidden
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2013-07-08 00:50:34 +0200
message:
  lisp/subr.el (read-quoted-char): Remove unused local variable `char'.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/subr.el                   subr.el-20091113204419-o5vbwnq5f7feedwu-151
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-07-07 19:35:54 +0000
+++ b/lisp/ChangeLog    2013-07-07 22:50:34 +0000
@@ -1,8 +1,12 @@
+2013-07-07  Juanma Barranquero  <address@hidden>
+
+       * subr.el (read-quoted-char): Remove unused local variable `char'.
+
 2013-07-07  Michael Kifer  <address@hidden>
 
        * faces.el  (tty-run-terminal-initialization): function changed (Stefan
        Monnier's patch).
-       
+
        * viper.el (viper-emacs-state-mode-list): add egg-status-buffer-mode.
        (viper-version): version update.
        (viper-go-away,viper-setup-hooks): function changed (Stefan Monnier's
@@ -10,15 +14,15 @@
        (viper--lookup-key,viper-catch-tty-ESC,viper-uncatch-tty-ESC,
        viper-setup-ESC-to-escape): new functions (Stefan Monnier's
        patch).
-       
+
        * viper-cmd.el: (viper-del-forward-char-in-insert): new function.
        (viper-save-kill-buffer): check if buffer is modified.
        (viper-envelop-ESC-key): function deleted (Stefan Monnier's patch).
        (viper-intercept-ESC-key): function changed (Stefan Monnier's patch).
-       
+
        * viper-keym.el (viper-ESC-key): constant changed (Stefan Monnier's
        patch).
-       
+
        * ediff.el (ediff-files-command,ediff3-files-command): new functions.
        (ediff-merge-command,ediff-merge-with-ancestor-command): new functions.
        (ediff-directories-command,ediff-directories3-command): new functions.
@@ -27,7 +31,7 @@
        All the above are command-line interfaces to ediff: facilitate calling
        Emacs with the appropriate ediff functions invoked.
        (ediff-version): version update.
-       
+
 2013-07-07  Eli Zaretskii  <address@hidden>
 
        * simple.el (default-font-height, window-screen-lines): New

=== modified file 'lisp/subr.el'
--- a/lisp/subr.el      2013-07-06 00:10:54 +0000
+++ b/lisp/subr.el      2013-07-07 22:50:34 +0000
@@ -1980,7 +1980,7 @@
 The optional argument PROMPT specifies a string to use to prompt the user.
 The variable `read-quoted-char-radix' controls which radix to use
 for numeric input."
-  (let ((message-log-max nil) done (first t) (code 0) char translated)
+  (let ((message-log-max nil) done (first t) (code 0) translated)
     (while (not done)
       (let ((inhibit-quit first)
            ;; Don't let C-h get the help message--only help function keys.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]