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
820bde8d
Commit
820bde8d
authored
May 29, 1993
by
Richard M. Stallman
Browse files
(vc-steal-lock, vc-insert-headers): Fix question whitespace.
parent
c273e647
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/vc.el
lisp/vc.el
+3
-3
No files found.
lisp/vc.el
View file @
820bde8d
...
...
@@ -99,7 +99,7 @@ The value is only computed when needed to avoid an expensive search.")
(
defvar
vc-header-alist
'
((
SCCS
"\%W\%"
)
(
RCS
"\$Id\$"
))
"*Header keywords to be inserted when `vc-insert-header' is executed."
)
"*Header keywords to be inserted when `vc-insert-header
s
' is executed."
)
(
defconst
vc-static-header-alist
'
((
"\\.c$"
.
"\n#ifndef lint\nstatic char vcid[] = \"\%s\";\n#endif /* lint */\n"
))
...
...
@@ -553,7 +553,7 @@ level to check it in under. COMMENT, if specified, is the checkin comment."
(
interactive
)
(
if
(
not
owner
)
(
setq
owner
(
vc-locking-user
file
)))
(
if
(
not
(
y-or-n-p
(
format
"Take the lock on %s:%s from %s?"
file
rev
owner
)))
(
if
(
not
(
y-or-n-p
(
format
"Take the lock on %s:%s from %s?
"
file
rev
owner
)))
(
error
"Steal cancelled."
))
(
pop-to-buffer
(
get-buffer-create
"*VC-mail*"
))
(
setq
default-directory
(
expand-file-name
"~/"
))
...
...
@@ -790,7 +790,7 @@ the variable `vc-header-alist'."
(
save-restriction
(
widen
)
(
if
(
or
(
not
(
vc-check-headers
))
(
y-or-n-p
"Version headers already exist. Insert another set?"
))
(
y-or-n-p
"Version headers already exist. Insert another set?
"
))
(
progn
(
let*
((
delims
(
cdr
(
assq
major-mode
vc-comment-alist
)))
(
comment-start-vc
(
or
(
car
delims
)
comment-start
"#"
))
...
...
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