aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-11-23 07:04:49 +0000
committerPavel Janík2001-11-23 07:04:49 +0000
commit1b944d9cd998e5af71a2e1bd7f88f11b4bfec8c4 (patch)
tree5024835449b8a8ea44b791f6882df42c0772d997 /src
parent050815029470a0da5eb9127221a0e7e7aa3ff125 (diff)
downloademacs-1b944d9cd998e5af71a2e1bd7f88f11b4bfec8c4.tar.gz
emacs-1b944d9cd998e5af71a2e1bd7f88f11b4bfec8c4.zip
(access_keymap): Remove unused variables `c1' and `c2'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/keymap.c1
2 files changed, 4 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index bbf738bf5bb..167f9ecfe31 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12001-11-23 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
4
12001-11-22 Jason Rumney <jasonr@gnu.org> 52001-11-22 Jason Rumney <jasonr@gnu.org>
2 6
3 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment. 7 * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
diff --git a/src/keymap.c b/src/keymap.c
index 02f7c75edab..ea8637c3b1a 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -552,7 +552,6 @@ access_keymap (map, idx, t_ok, noinherit, autoload)
552 else if (CONSP (binding)) 552 else if (CONSP (binding))
553 { 553 {
554 Lisp_Object key = XCAR (binding); 554 Lisp_Object key = XCAR (binding);
555 int c1, c2;
556 555
557 if (EQ (key, idx)) 556 if (EQ (key, idx))
558 val = XCDR (binding); 557 val = XCDR (binding);