diff options
| author | Richard M. Stallman | 2005-11-16 22:21:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-11-16 22:21:16 +0000 |
| commit | f832e8542296babdf4b28affdebdc78636aa8627 (patch) | |
| tree | 92570b2f0301d6382ab2ef696565a8e304b30097 | |
| parent | 9d8684ddf308d01abb226e0ef66a0d46578818ac (diff) | |
| download | emacs-f832e8542296babdf4b28affdebdc78636aa8627.tar.gz emacs-f832e8542296babdf4b28affdebdc78636aa8627.zip | |
(ucs-set-table-for-input):
Use make-local-variable, not make-variable-buffer-local.
| -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' | |||
| 2523 | (when (char-table-p table) | 2523 | (when (char-table-p table) |
| 2524 | (if buffer | 2524 | (if buffer |
| 2525 | (with-current-buffer buffer | 2525 | (with-current-buffer buffer |
| 2526 | (set (make-variable-buffer-local 'translation-table-for-input) | 2526 | (set (make-local-variable 'translation-table-for-input) |
| 2527 | table)) | 2527 | table)) |
| 2528 | (set (make-variable-buffer-local 'translation-table-for-input) | 2528 | (set (make-local-variable 'translation-table-for-input) |
| 2529 | table))))))) | 2529 | table))))))) |
| 2530 | 2530 | ||
| 2531 | ;; The minibuffer needs to acquire a `buffer-file-coding-system' for | 2531 | ;; The minibuffer needs to acquire a `buffer-file-coding-system' for |