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
48df920c
Commit
48df920c
authored
Jul 10, 2007
by
Stefan Monnier
Browse files
(update-directory-autoloads): Remove duplicates without also removing
entries from other directories.
parent
4d1daf59
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
29 deletions
+27
-29
lisp/ChangeLog
lisp/ChangeLog
+21
-25
lisp/emacs-lisp/autoload.el
lisp/emacs-lisp/autoload.el
+6
-4
No files found.
lisp/ChangeLog
View file @
48df920c
2007-07-10 Stefan Monnier <monnier@iro.umontreal.ca>
* emacs-lisp/autoload.el (update-directory-autoloads): Remove
duplicates without also removing entries from other directories.
2007-07-10 Carsten Dominik <dominik@science.uva.nl>
* textmodes/org.el (org-agenda-day-view, org-agenda-week-view):
Remember span as default.
(org-columns-edit-value): Rename
d
from `org-column-edit'.
(org-columns-display-here-title): Rename
d
from
(org-columns-edit-value): Rename from `org-column-edit'.
(org-columns-display-here-title): Rename from
`org-overlay-columns-title'.
(org-columns-remove-overlays): ` Renamed from
org-remove-column-overlays'.
(org-columns-get-autowidth-alist): ` Renamed from
org-get-columns-autowidth-alist'.
(org-columns-display-here): Renamed from `org-overlay-columns'.
(org-columns-new-overlay): Renamed from `org-new-column-overlay'.
(org-columns-quit): Renamed from `org-column-quit'.
(org-columns-show-value): Renamed from `org-column-show-value'.
(org-columns-remove-overlays): Rename from org-remove-column-overlays.
(org-columns-get-autowidth-alist): Rename from
`org-get-columns-autowidth-alist'.
(org-columns-display-here): Rename from `org-overlay-columns'.
(org-columns-new-overlay): Rename from `org-new-column-overlay'.
(org-columns-quit): Rename from `org-column-quit'.
(org-columns-show-value): Rename from `org-column-show-value'.
(org-columns-content, org-columns-widen)
(org-columns-next-allowed-value)
(org-columns-edit-allowed, org-columns-store-format)
...
...
@@ -34,17 +38,16 @@
(org-property-get-allowed-values)
(org-verify-version, org-column-string-to-number)
(org-delete-property-globally): New functions.
(org-columns-current-fmt): Rename
d
from `org-current-columns-fmt'.
(org-columns-overlays): Rename
d
from `org-column-overlays'.
(org-columns-map): Rename
d
from `org-column-map'.
(org-columns-current-maxwidths): Rename
d
from
(org-columns-current-fmt): Rename from `org-current-columns-fmt'.
(org-columns-overlays): Rename from `org-column-overlays'.
(org-columns-map): Rename from `org-column-map'.
(org-columns-current-maxwidths): Rename from
`org-current-columns-maxwidths'.
(org-columns-begin-marker, org-columns-current-fmt-compiled)
(org-previous-header-line-format)
(org-columns-inhibit-recalculation)
(org-columns-top-level-marker): New variables.
(org-columns-default-format): Renamed from
`org-default-columns-format'.
(org-columns-default-format): Rename from `org-default-columns-format'.
(org-property-re): New constant.
2007-07-10 Guanpeng Xu <herberteuler@hotmail.com>
...
...
@@ -77,8 +80,8 @@
* longlines.el (longlines-wrap-region): Avoid marking buffer as
modified.
(longlines-auto-wrap, longlines-window-change-function):
Remove
unnecessary calls to set-buffer-modified-p.
(longlines-auto-wrap, longlines-window-change-function):
Remove
unnecessary calls to set-buffer-modified-p.
2007-07-08 Katsumi Yamaoka <yamaoka@jpl.org>
...
...
@@ -89,13 +92,6 @@
* vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
(vc-cvs-checkout): Remove last arg now unused; simplify.
2007-07-08 Chong Yidong <cyd@stupidchicken.com>
* longlines.el (longlines-wrap-region): Avoid marking buffer as
modified.
(longlines-auto-wrap, longlines-window-change-function):
Remove unnecessary calls to set-buffer-modified-p.
2007-07-08 Michael Albinus <michael.albinus@gmx.de>
* files.el (file-remote-p): Introduce optional parameter CONNECTED.
...
...
lisp/emacs-lisp/autoload.el
View file @
48df920c
...
...
@@ -559,6 +559,7 @@ directory or directories specified."
(directory-files (expand-file-name dir)
t files-re))
dirs)))
(done ())
(this-time (current-time))
;; Files with no autoload cookies or whose autoloads go to other
;; files because of file-local autoload-generated-file settings.
...
...
@@ -592,10 +593,10 @@ directory or directories specified."
(push file no-autoloads)
(setq files (delete file files)))))))
((not (stringp file)))
((
not (and
(file-exists-p file)
;; Remove duplicates as well, just in case.
(member file
files)
))
;; Remove the obsolete section.
((
or (not
(file-exists-p file)
)
;; Remove duplicates as well, just in case.
(member file
done
))
;; Remove the obsolete section.
(autoload-remove-section (match-beginning 0)))
((not (time-less-p (nth 4 form)
(nth 5 (file-attributes file))))
...
...
@@ -606,6 +607,7 @@ directory or directories specified."
(if (autoload-generate-file-autoloads
file (current-buffer) buffer-file-name)
(push file no-autoloads))))
(push file done)
(setq files (delete file files)))))
;; Elements remaining in FILES have no existing autoload sections yet.
(dolist (file files)
...
...
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