aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-14 08:42:21 -0700
committerPaul Eggert2011-03-14 08:42:21 -0700
commitdbbb842771445b0376b95a48a4fae85f37420c62 (patch)
tree6c901249777af013adcc3e8791977073936974a4 /src
parent1004a21a8f2488da573e0340873cbdeac3ac2001 (diff)
downloademacs-dbbb842771445b0376b95a48a4fae85f37420c62.tar.gz
emacs-dbbb842771445b0376b95a48a4fae85f37420c62.zip
* keymap.c (DENSE_TABLE_SIZE): Remove; unused.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog1
-rw-r--r--src/keymap.c3
2 files changed, 1 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 8efad3a59d9..5b9e472e4e9 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -4,6 +4,7 @@
4 (copy_keymap_item, append_key, push_text_char_description): 4 (copy_keymap_item, append_key, push_text_char_description):
5 Now static. 5 Now static.
6 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily. 6 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
7 (DENSE_TABLE_SIZE): Remove; unused.
7 8
8 * keyboard.c: Declare functions static if they are not used elsewhere. 9 * keyboard.c: Declare functions static if they are not used elsewhere.
9 (echo_char, echo_dash, cmd_error, top_level_2): 10 (echo_char, echo_dash, cmd_error, top_level_2):
diff --git a/src/keymap.c b/src/keymap.c
index 05d9616ef2d..a4de89f6a72 100644
--- a/src/keymap.c
+++ b/src/keymap.c
@@ -34,9 +34,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
34#include "keymap.h" 34#include "keymap.h"
35#include "window.h" 35#include "window.h"
36 36
37/* The number of elements in keymap vectors. */
38#define DENSE_TABLE_SIZE (0200)
39
40/* Actually allocate storage for these variables */ 37/* Actually allocate storage for these variables */
41 38
42Lisp_Object current_global_map; /* Current global keymap */ 39Lisp_Object current_global_map; /* Current global keymap */