diff options
| author | Dave Love | 1999-05-27 15:40:33 +0000 |
|---|---|---|
| committer | Dave Love | 1999-05-27 15:40:33 +0000 |
| commit | 83eded3abd5cd5a643c2ca4a0acd58dad5a7402b (patch) | |
| tree | 101775270a6cfe08d7992a7f81183f1bb2615f17 | |
| parent | 2e77e98ed463e0f7fcfcded6942e21e5eef809e5 (diff) | |
| download | emacs-83eded3abd5cd5a643c2ca4a0acd58dad5a7402b.tar.gz emacs-83eded3abd5cd5a643c2ca4a0acd58dad5a7402b.zip | |
(iso-8859-n-locale-regexp): Don't match 8859-15 &c.
| -rw-r--r-- | lisp/startup.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index bd8a25f34f0..bb2a7c4536f 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -296,12 +296,12 @@ is less convenient." | |||
| 296 | :type '(choice (const :tag "none" nil) string) | 296 | :type '(choice (const :tag "none" nil) string) |
| 297 | :group 'initialization) | 297 | :group 'initialization) |
| 298 | 298 | ||
| 299 | (defconst iso-8859-n-locale-regexp "8859[-_]?\\([1-49]\\)" | 299 | (defconst iso-8859-n-locale-regexp "8859[-_]?\\([1-49]\\)\\>" |
| 300 | "Regexp that specifies when to enable an ISO 8859-N character set. | 300 | "Regexp that specifies when to enable an ISO 8859-N character set. |
| 301 | We do that if this regexp matches the locale name | 301 | We do that if this regexp matches the locale name |
| 302 | specified by the LC_ALL, LC_CTYPE and LANG environment variables. | 302 | specified by the LC_ALL, LC_CTYPE and LANG environment variables. |
| 303 | The paren group in the regexp should match the specific character | 303 | The paren group in the regexp should match the specific character |
| 304 | set number, N.") | 304 | set number, N. Currently only Latin-[12345] is supported.") |
| 305 | 305 | ||
| 306 | (defcustom mail-host-address nil | 306 | (defcustom mail-host-address nil |
| 307 | "*Name of this machine, for purposes of naming users." | 307 | "*Name of this machine, for purposes of naming users." |