aboutsummaryrefslogtreecommitdiffstats
path: root/src/keymap.c
diff options
context:
space:
mode:
authorStefan Monnier2011-03-06 16:22:16 -0500
committerStefan Monnier2011-03-06 16:22:16 -0500
commit0d6459dfb52188481bfd6bb53f1b2f653ecd6a5d (patch)
tree306b87fc2903ad23343f3c84be1cccfa72e5a97e /src/keymap.c
parent798cb64441228d473f7bdd213183c70fb582595c (diff)
parent892777baa1739fa5f1f2d1c2975488c3e6f57bae (diff)
downloademacs-0d6459dfb52188481bfd6bb53f1b2f653ecd6a5d.tar.gz
emacs-0d6459dfb52188481bfd6bb53f1b2f653ecd6a5d.zip
Merge from trunk
Diffstat (limited to 'src/keymap.c')
-rw-r--r--src/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c
index 0e4715e4b8b..4459ef07d68 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -2756,7 +2756,7 @@ remapped command in the returned list. */)
2756 && !NILP (firstonly) 2756 && !NILP (firstonly)
2757 && !NILP (tem = Fget (definition, QCadvertised_binding))) 2757 && !NILP (tem = Fget (definition, QCadvertised_binding)))
2758 { 2758 {
2759 /* We have a list of advertized bindings. */ 2759 /* We have a list of advertised bindings. */
2760 while (CONSP (tem)) 2760 while (CONSP (tem))
2761 if (EQ (shadow_lookup (keymaps, XCAR (tem), Qnil, 0), definition)) 2761 if (EQ (shadow_lookup (keymaps, XCAR (tem), Qnil, 0), definition))
2762 return XCAR (tem); 2762 return XCAR (tem);
@@ -3219,7 +3219,7 @@ static void
3219describe_command (Lisp_Object definition, Lisp_Object args) 3219describe_command (Lisp_Object definition, Lisp_Object args)
3220{ 3220{
3221 register Lisp_Object tem1; 3221 register Lisp_Object tem1;
3222 int column = (int) current_column (); /* iftc */ 3222 EMACS_INT column = current_column ();
3223 int description_column; 3223 int description_column;
3224 3224
3225 /* If column 16 is no good, go to col 32; 3225 /* If column 16 is no good, go to col 32;