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
45fb3bb8
Commit
45fb3bb8
authored
Apr 09, 1994
by
Richard M. Stallman
Browse files
(inhibit-first-line-modes-regexps): Renamed from
inhibit-local-variables-regexps.
parent
4633707b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lisp/files.el
lisp/files.el
+4
-4
No files found.
lisp/files.el
View file @
45fb3bb8
...
...
@@ -859,8 +859,8 @@ The car of each element is compared with
the
name
of
the
interpreter
specified
in
the
first
line.
If
it
matches,
mode
MODE
is
selected.
")
(defconst inhibit-
local-variabl
es-regexps '("
\\.tar$
")
"
List
of
regexps
; if one matches a file name, don't look for
local vars
.")
(defconst inhibit-
first-line-mod
es-regexps '("
\\.tar$
")
"
List
of
regexps
; if one matches a file name, don't look for
`-*-'
.")
(
defvar
user-init-file
""
; set by command-line
...
...
@@ -882,8 +882,8 @@ If `enable-local-variables' is nil, this function does not check for a
(
skip-chars-forward
" \t\n"
)
(
and
enable-local-variables
;; Don't look for -*- if this file name matches any
;; of the regexps in inhibit-
local-variabl
es-regexps.
(
let
((
temp
inhibit-
local-variabl
es-regexps
))
;; of the regexps in inhibit-
first-line-mod
es-regexps.
(
let
((
temp
inhibit-
first-line-mod
es-regexps
))
(
while
(
and
temp
(
not
(
string-match
(
car
temp
)
buffer-file-name
)))
...
...
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