diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/charset.c | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f7f4a5f03b2..3256a92e37a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-03-20 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * charset.c (init_charset): When we cannot find the charsets directory, | ||
| 4 | mention if EMACSDATA is set. | ||
| 5 | |||
| 1 | 2014-03-19 Paul Eggert <eggert@cs.ucla.edu> | 6 | 2014-03-19 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 7 | ||
| 3 | * fns.c (Frandom): Fix rare bug where the result isn't random. | 8 | * fns.c (Frandom): Fix rare bug where the result isn't random. |
diff --git a/src/charset.c b/src/charset.c index 7935ff9382b..3566b156736 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -2305,9 +2305,11 @@ init_charset (void) | |||
| 2305 | obscure problem (eg bug#6401), so better abort. */ | 2305 | obscure problem (eg bug#6401), so better abort. */ |
| 2306 | fprintf (stderr, "Error: charsets directory not found:\n\ | 2306 | fprintf (stderr, "Error: charsets directory not found:\n\ |
| 2307 | %s\n\ | 2307 | %s\n\ |
| 2308 | Emacs will not function correctly without the character map files.\n\ | 2308 | Emacs will not function correctly without the character map files.\n%s\ |
| 2309 | Please check your installation!\n", | 2309 | Please check your installation!\n", |
| 2310 | SDATA (tempdir)); | 2310 | SDATA (tempdir), |
| 2311 | egetenv("EMACSDATA") ? "The EMACSDATA environment \ | ||
| 2312 | variable is set, maybe it has the wrong value?\n" : ""); | ||
| 2311 | exit (1); | 2313 | exit (1); |
| 2312 | } | 2314 | } |
| 2313 | 2315 | ||