diff options
| -rw-r--r-- | lisp/language/european.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/language/european.el b/lisp/language/european.el index 572ed7eb3ca..47289e6c43a 100644 --- a/lisp/language/european.el +++ b/lisp/language/european.el | |||
| @@ -57,9 +57,9 @@ | |||
| 57 | 57 | ||
| 58 | ;; If this is a Latin-N character set, set up syntax for it in | 58 | ;; If this is a Latin-N character set, set up syntax for it in |
| 59 | ;; single-byte mode. We can't use require because the file | 59 | ;; single-byte mode. We can't use require because the file |
| 60 | ;; must be eval'd each time. | 60 | ;; must be eval'd each time in case we change from one Latin-N to another. |
| 61 | (if (string-match "^Latin-\\([1-9]\\)$" language) | 61 | (if (string-match "^Latin-\\([1-9]\\)$" language) |
| 62 | (load (downcase language)))) | 62 | (load (downcase language) nil t))) |
| 63 | 63 | ||
| 64 | ;; Latin-1 (ISO-8859-1) | 64 | ;; Latin-1 (ISO-8859-1) |
| 65 | 65 | ||