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
1438263d
Commit
1438263d
authored
Jun 25, 1993
by
Roland McGrath
Browse files
(find-change-log): Try get-file-buffer before file-exists-p.
parent
e294d0c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/add-log.el
lisp/add-log.el
+2
-2
No files found.
lisp/add-log.el
View file @
1438263d
...
...
@@ -75,7 +75,7 @@ current buffer to the complete file name."
;; Move up in the dir hierarchy till we find a change log file.
(
let
((
file1
file-name
)
parent-dir
)
(
while
(
and
(
not
(
file-exists-p
file1
))
(
while
(
and
(
not
(
or
(
get-file-buffer
file1
)
(
file-exists-p
file1
))
)
(
progn
(
setq
parent-dir
(
file-name-directory
(
directory-file-name
...
...
@@ -86,7 +86,7 @@ current buffer to the complete file name."
;; Move up to the parent dir and try again.
(
setq
file1
(
expand-file-name
(
change-log-name
)
parent-dir
)))
;; If we found a change log in a parent, use that.
(
if
(
file-exists-p
file1
)
(
if
(
or
(
get-file-buffer
file1
)
(
file-exists-p
file1
)
)
(
setq
file-name
file1
)))
;; Make a local variable in this buffer so we needn't search again.
(
set
(
make-local-variable
'change-log-default-name
)
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