emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r111445: * src/keyboard.c (echo_add_k


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111445: * src/keyboard.c (echo_add_key): Rename from echo_add_char.
Date: Tue, 08 Jan 2013 11:51:11 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111445
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Tue 2013-01-08 11:51:11 -0500
message:
  * src/keyboard.c (echo_add_key): Rename from echo_add_char.
modified:
  src/ChangeLog
  src/keyboard.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-01-06 02:38:04 +0000
+++ b/src/ChangeLog     2013-01-08 16:51:11 +0000
@@ -1,3 +1,7 @@
+2013-01-08  Stefan Monnier  <address@hidden>
+
+       * keyboard.c (echo_add_key): Rename from echo_add_char.
+
 2013-01-06  Chong Yidong  <address@hidden>
 
        * keyboard.c (echo_add_char): New function, factored out from
@@ -11,8 +15,8 @@
 
        * xdisp.c (dump_glyph): Align glyph data better.  Use "pD" instead
        of a non-portable "t" to print ptrdiff_t values.  Allow up to 9
-       digits for buffer positions, before misalignment starts.  Display
-       "0" for integer "object" field.
+       digits for buffer positions, before misalignment starts.
+       Display "0" for integer "object" field.
        (dump_glyph_row): Adapt the header line to changes in dump_glyph.
        Display the newline glyph more unambiguously.
 
@@ -53,8 +57,8 @@
 2012-12-31  Eli Zaretskii  <address@hidden>
 
        * w32.c (unsetenv): Set up the string passed to _putenv
-       correctly.  See
-       http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
+       correctly.
+       See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
        for the bug this caused.
 
 2012-12-30  Paul Eggert  <address@hidden>
@@ -126,8 +130,8 @@
 
 2012-12-27  Eli Zaretskii  <address@hidden>
 
-       * fileio.c (file_name_as_directory, directory_file_name): Accept
-       an additional argument MULTIBYTE to indicate whether the input C
+       * fileio.c (file_name_as_directory, directory_file_name):
+       Accept an additional argument MULTIBYTE to indicate whether the input C
        came from a multibyte or a unibyte Lisp string; all callers
        adjusted.  Don't assume the input string is always multibyte.
        (Bug#13262)
@@ -211,8 +215,8 @@
        * w32.c (sys_close): Do not call delete_child on a subprocess
        whose handle is not yet closed.  Instead, set its file descriptor
        to a negative value, so that reap_subprocess will call
-       delete_child on that subprocess when its SIGCHLD arrives.  This
-       avoids closing handles used for communications between sys_select
+       delete_child on that subprocess when its SIGCHLD arrives.
+       This avoids closing handles used for communications between sys_select
        and reader_thread, which doesn't give sys_select a chance to
        notice that the process exited and invoke the SIGCHLD handler for
        it.

=== modified file 'src/keyboard.c'
--- a/src/keyboard.c    2013-01-06 02:38:04 +0000
+++ b/src/keyboard.c    2013-01-08 16:51:11 +0000
@@ -502,7 +502,7 @@
    printed.  */
 
 static void
-echo_add_char (Lisp_Object c)
+echo_add_key (Lisp_Object c)
 {
   int size = KEY_DESCRIPTION_SIZE + 100;
   char *buffer = alloca (size);
@@ -586,7 +586,7 @@
 {
   if (current_kboard->immediate_echo)
     {
-      echo_add_char (c);
+      echo_add_key (c);
       echo_now ();
     }
 }
@@ -9227,7 +9227,7 @@
              && NILP (Fzerop (Vecho_keystrokes))
              && current_kboard->immediate_echo)
            {
-             echo_add_char (key);
+             echo_add_key (key);
              echo_dash ();
            }
        }


reply via email to

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