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
28a3f811
Commit
28a3f811
authored
Apr 07, 1998
by
Dave Love
Browse files
(main): Obey environment variable EMACS_UNIBYTE as
alternative to --unibyte.
parent
74ae80cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/emacs.c
src/emacs.c
+3
-2
No files found.
src/emacs.c
View file @
28a3f811
...
...
@@ -735,7 +735,8 @@ main (argc, argv, envp)
buffers and strings. We need to handle this before calling
init_lread, init_editfns and other places that generate Lisp strings
from text in the environment. */
if (argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args))
if ((argmatch (argv, argc, "-unibyte", "--unibyte", 4, NULL, &skip_args))
|| getenv ("EMACS_UNIBYTE"))
{
Lisp_Object symbol;
symbol = intern ("default-enable-multibyte-characters");
...
...
@@ -784,7 +785,7 @@ main (argc, argv, envp)
printf ("\
Usage: %s [-t term] [--terminal term] [-nw] [--no-windows] [--batch]\n\
[-q] [--no-init-file] [-u user] [--user user] [--debug-init]\n\
[--version] [--no-site-file]
[--unibyte]
\n\
[--version] [--no-site-file]\n\
[-f func] [--funcall func] [-l file] [--load file] [--insert file]\n\
[+linenum] file-to-visit [--kill]\n\
Report bugs to bug-gnu-emacs@prep.ai.mit.edu. First, please see\n\
...
...
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