aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/bindings.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el
index bf0323cdf20..d077e641ac1 100644
--- a/lisp/bindings.el
+++ b/lisp/bindings.el
@@ -604,7 +604,7 @@ language you are using."
604(let ((l (generic-character-list)) 604(let ((l (generic-character-list))
605 (table (nth 1 global-map))) 605 (table (nth 1 global-map)))
606 (while l 606 (while l
607 (set-char-table-default table (car l) 'self-insert-command) 607 (aset table (car l) 'self-insert-command)
608 (setq l (cdr l)))) 608 (setq l (cdr l))))
609 609
610(setq help-event-list '(help f1)) 610(setq help-event-list '(help f1))