From: Richard M. Stallman Date: Wed, 16 Nov 2005 22:21:16 +0000 (+0000) Subject: (ucs-set-table-for-input): X-Git-Tag: emacs-pretest-22.0.90~5831 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f832e8542296babdf4b28affdebdc78636aa8627;p=emacs.git (ucs-set-table-for-input): Use make-local-variable, not make-variable-buffer-local. --- 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