diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-11-16 22:21:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-11-16 22:21:16 +0000 |
commit | f832e8542296babdf4b28affdebdc78636aa8627 (patch) | |
tree | 92570b2f0301d6382ab2ef696565a8e304b30097 /lisp | |
parent | 9d8684ddf308d01abb226e0ef66a0d46578818ac (diff) | |
download | emacs-f832e8542296babdf4b28affdebdc78636aa8627.tar.gz |
(ucs-set-table-for-input):
Use make-local-variable, not make-variable-buffer-local.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/international/ucs-tables.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/international/ucs-tables.el b/lisp/international/ucs-tables.el index 937df9e78df..8d0760563c5 100644 --- a/lisp/international/ucs-tables.el +++ b/lisp/international/ucs-tables.el @@ -2523,9 +2523,9 @@ This function is automatically called directly at the end of `get-buffer-create' (when (char-table-p table) (if buffer (with-current-buffer buffer - (set (make-variable-buffer-local 'translation-table-for-input) + (set (make-local-variable 'translation-table-for-input) table)) - (set (make-variable-buffer-local 'translation-table-for-input) + (set (make-local-variable 'translation-table-for-input) table))))))) ;; The minibuffer needs to acquire a `buffer-file-coding-system' for |