Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
64f62b45
Commit
64f62b45
authored
Jul 04, 1994
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(iso-8859-1-locale-regexp): New variable.
(command-line): Use it.
parent
3e1c918b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/startup.el
lisp/startup.el
+4
-2
No files found.
lisp/startup.el
View file @
64f62b45
...
...
@@ -201,6 +201,9 @@ this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.")
(
x-popup-menu
nil
(
cdr
(
cdr
(
car
submap
)))))
(
setq
submap
(
cdr
submap
))))))
(
defconst
iso-8859-1-locale-regexp
"iso[-_]?8859[-_]1"
"Use ISO 8859-1 character set by default if this regexp matches LC_CTYPE."
)
(
defun
command-line
()
(
setq
command-line-default-directory
default-directory
)
...
...
@@ -217,8 +220,7 @@ this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.")
(
string=
vc
"simple"
))
(
setq
version-control
'never
))))
(
if
(
or
(
string-equal
(
getenv
"LC_CTYPE"
)
"iso_8859_1"
)
(
string-equal
(
getenv
"LC_CTYPE"
)
"iso-8859-1"
))
(
if
(
string-match
iso-8859-1-locale-regexp
(
getenv
"LC_CTYPE"
))
(
progn
(
standard-display-european
t
)
(
require
'iso-syntax
)))
...
...
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