diff options
| author | Richard M. Stallman | 1994-07-03 20:53:42 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-07-03 20:53:42 +0000 |
| commit | 2c5adf7ee3e5886176798722d19629ecc9428aa3 (patch) | |
| tree | db7ae71b242bcd1a1083c0c6622a3c9223abf767 | |
| parent | 989a5e4fe5cf936cf9d8b2112dbe1f58990d8476 (diff) | |
| download | emacs-2c5adf7ee3e5886176798722d19629ecc9428aa3.tar.gz emacs-2c5adf7ee3e5886176798722d19629ecc9428aa3.zip | |
(command-line): Accept iso-8859-1 like iso_8859_1.
| -rw-r--r-- | lisp/startup.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index d2009fb38db..1f36da823e8 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -217,7 +217,8 @@ this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.") | |||
| 217 | (string= vc "simple")) | 217 | (string= vc "simple")) |
| 218 | (setq version-control 'never)))) | 218 | (setq version-control 'never)))) |
| 219 | 219 | ||
| 220 | (if (string-equal (getenv "LC_CTYPE") "iso_8859_1") | 220 | (if (or (string-equal (getenv "LC_CTYPE") "iso_8859_1") |
| 221 | (string-equal (getenv "LC_CTYPE") "iso-8859-1")) | ||
| 221 | (progn | 222 | (progn |
| 222 | (standard-display-european t) | 223 | (standard-display-european t) |
| 223 | (require 'iso-syntax))) | 224 | (require 'iso-syntax))) |