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
449decf5
Commit
449decf5
authored
Jan 08, 1996
by
Karl Heuer
Browse files
(vc-update-change-log): Use add-log-full-name and
add-log-mailing-address if they are defined.
parent
f768c9cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
3 deletions
+9
-3
lisp/vc.el
lisp/vc.el
+9
-3
No files found.
lisp/vc.el
View file @
449decf5
...
...
@@ -1761,7 +1761,13 @@ From a program, any arguments are passed to the `rcs2log' script."
(
substring
f
0
(
match-end
1
))
f
)))
(
directory-files
RCS
nil
"...\\|^[^.]\\|^.[^.]"
)))))))
(
let
((
odefault
default-directory
))
(
let
((
odefault
default-directory
)
(
full-name
(
if
(
boundp
'add-log-full-name
)
add-log-full-name
(
user-full-name
)))
(
mailing-address
(
if
(
boundp
'add-log-mailing-address
)
add-log-mailing-address
user-mail-address
)))
(
find-file-other-window
(
find-change-log
))
(
barf-if-buffer-read-only
)
(
vc-buffer-sync
)
...
...
@@ -1775,9 +1781,9 @@ From a program, any arguments are passed to the `rcs2log' script."
"-u"
(
concat
(
user-login-name
)
"\t"
(
user-
full-name
)
full-name
"\t"
user-
mail-address
)
mail
ing
-address
)
(
mapcar
(
function
(
lambda
(
f
)
(
file-relative-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