diff options
| author | Dave Love | 2002-11-06 23:28:29 +0000 |
|---|---|---|
| committer | Dave Love | 2002-11-06 23:28:29 +0000 |
| commit | 24c9eeeb1d4392a085a1fa3eda061fa6ddd78f38 (patch) | |
| tree | b7523ab5849f8b01e572a604398b4ee56a5389f7 | |
| parent | 940fe4866f86267572c6f9ce894dda3f69236998 (diff) | |
| download | emacs-24c9eeeb1d4392a085a1fa3eda061fa6ddd78f38.tar.gz emacs-24c9eeeb1d4392a085a1fa3eda061fa6ddd78f38.zip | |
(normal-mode): Call ucs-set-table-for-input.
| -rw-r--r-- | lisp/files.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/files.el b/lisp/files.el index 9d756bcfd29..d0c712fdcfd 100644 --- a/lisp/files.el +++ b/lisp/files.el | |||
| @@ -1486,7 +1486,9 @@ in that case, this function acts as if `enable-local-variables' were t." | |||
| 1486 | enable-local-variables))) | 1486 | enable-local-variables))) |
| 1487 | (hack-local-variables)) | 1487 | (hack-local-variables)) |
| 1488 | (error (message "File local-variables error: %s" | 1488 | (error (message "File local-variables error: %s" |
| 1489 | (prin1-to-string err))))) | 1489 | (prin1-to-string err)))) |
| 1490 | (if (fboundp 'ucs-set-table-for-input) ; don't lose when building | ||
| 1491 | (ucs-set-table-for-input))) | ||
| 1490 | 1492 | ||
| 1491 | (defvar auto-mode-alist | 1493 | (defvar auto-mode-alist |
| 1492 | (mapc | 1494 | (mapc |