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
2cb250dd
Commit
2cb250dd
authored
Oct 03, 2007
by
Stefan Monnier
Browse files
(copyright-update): Don't update if the file
already uses a more recent copyright version than the "current" one.
parent
e48a5bf9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
12 deletions
+19
-12
lisp/ChangeLog
lisp/ChangeLog
+13
-9
lisp/emacs-lisp/copyright.el
lisp/emacs-lisp/copyright.el
+6
-3
No files found.
lisp/ChangeLog
View file @
2cb250dd
2007-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/copyright.el (copyright-update): Don't update if the file
already uses a more recent copyright version than the "current" one.
2007-10-03 Micha,Ak(Bl Cadilhac <michael@cadilhac.name>
* doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-reset-slice)
...
...
@@ -12,9 +17,9 @@
2007-10-03 Michael Albinus <michael.albinus@gmx.de>
* net/tramp.el (top): Add tramp-compat to `tramp-unload-hook'.
(tramp-file-name-handler-alist):
Add
`tramp-handle-insert-file-contents-literally'. Neded for XEmacs.
(tramp-make-temp-file): Use `make-temp-name'. `make-temp-file',
(tramp-file-name-handler-alist):
Add
`tramp-handle-insert-file-contents-literally'. Ne
e
ded for XEmacs.
(tramp-make-temp-file): Use `make-temp-name'.
`make-temp-file',
used before, creates the file already, which is not desired.
(tramp-do-copy-or-rename-file-directly): Simplify handling of
temporary file.
...
...
@@ -32,8 +37,7 @@
order to avoid autoloading problems.
* net/tramp-fish.el:
* net/tramp-smb.el: Move further compatibility code to
tramp-compat.el.
* net/tramp-smb.el: Move further compatibility code to tramp-compat.el.
* net/tramp-ftp.el (tramp-ftp-file-name-handler): Handle the case
where the second parameter of `copy-file' or `rename-file' is a
...
...
@@ -71,14 +75,14 @@
shrunk, tail the whole file again (the file presumably has been
rewritten).
* woman.el (woman-topic-all-completions, woman-mini-help):
Fix
fallout from 2007-09-07 introduction of `dolist' when the list
* woman.el (woman-topic-all-completions, woman-mini-help):
Fix
fallout from 2007-09-07 introduction of `dolist' when the list
actually was being manipulated in the loop.
(woman-Cyg-to-Win, woman-pre-process-region)
(woman-horizontal-escapes, woman-if-body, woman-unescape)
(woman-strings, woman-special-characters, woman1-hc)
(woman-change-fonts, woman-find-next-control-line):
Use
`match-beginning' rather than `match-string' when the result is
(woman-change-fonts, woman-find-next-control-line):
Use
`match-beginning' rather than `match-string' when the result is
just used as a flag.
2007-09-30 Michael Albinus <michael.albinus@gmx.de>
...
...
lisp/emacs-lisp/copyright.el
View file @
2cb250dd
...
...
@@ -186,10 +186,13 @@ interactively."
either \\|
; a\\^u eldono \\([0-9]+\\)a, ? a\\^u (la\\^u via \\)\
version
\\
(
[0-9]+\\
)
,
or
(
at
"
(copyright-limit) t)
(not (string= (match-string 3) copyright-current-gpl-version))
;; Don't update if the file is already using a more recent
;; version than the "
current
" one.
(< (string-to-number (match-string 3))
(string-to-number copyright-current-gpl-version))
(or noquery
(y-or-n-p (
conc
at "
Replace
GPL
version
by
"
copyright-current-gpl-version
"
?
"
)))
(y-or-n-p (
form
at "
Replace
GPL
version
by
%s?
"
copyright-current-gpl-version)))
(progn
(if (match-end 2)
;; Esperanto bilingual comment in two-column.el
...
...
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