Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
7b9cb544
Commit
7b9cb544
authored
Mar 19, 2014
by
Glenn Morris
Browse files
* src/charset.c (init_charset): When we cannot find the charsets directory,
mention if EMACSDATA is set.
parent
f15ec1ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/charset.c
src/charset.c
+4
-2
No files found.
src/ChangeLog
View file @
7b9cb544
2014-03-20 Glenn Morris <rgm@gnu.org>
* charset.c (init_charset): When we cannot find the charsets directory,
mention if EMACSDATA is set.
2014-03-19 Paul Eggert <eggert@cs.ucla.edu>
* fns.c (Frandom): Fix rare bug where the result isn't random.
...
...
src/charset.c
View file @
7b9cb544
...
...
@@ -2305,9 +2305,11 @@ init_charset (void)
obscure problem (eg bug#6401), so better abort. */
fprintf
(
stderr
,
"Error: charsets directory not found:
\n
\
%s
\n
\
Emacs will not function correctly without the character map files.
\n
\
Emacs will not function correctly without the character map files.
\n
%s
\
Please check your installation!
\n
"
,
SDATA
(
tempdir
));
SDATA
(
tempdir
),
egetenv
(
"EMACSDATA"
)
?
"The EMACSDATA environment \
variable is set, maybe it has the wrong value?
\n
"
:
""
);
exit
(
1
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment