From f832e8542296babdf4b28affdebdc78636aa8627 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 16 Nov 2005 22:21:16 +0000 Subject: [PATCH] (ucs-set-table-for-input): Use make-local-variable, not make-variable-buffer-local. --- lisp/international/ucs-tables.el | 4 ++-- 1 file 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 -- 2.39.5