mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Merge from origin/emacs-27
a5f7c26907(origin/emacs-27) * admin/authors.el: Add an author alias.d87a4d1f4eLimit RLIMIT_NOFILE to FD_SETSIZE on macOSe5ca8e5e73Fix Elisp manual entry on 'set-window-configuration'485f24223f; Update ChangeLog.38f200254fb; Update etc/AUTHORSc7adc851ad* admin/authors.el: Add missing author aliases.4acdd7fe58Fix edge case errors in filename-matching regexps5f36e21fe5Clarify the doc string of 'yank'13301d4266New function erc-track-switch-buffer-other-window38f7538d8fNew function erc-switch-to-buffer-other-window # Conflicts: # etc/NEWS
This commit is contained in:
commit
97e48510ad
48 changed files with 1324 additions and 170 deletions
|
|
@ -94,7 +94,7 @@ is left in the `*gulp*' buffer at the end."
|
|||
(interactive "DRequest updates for Lisp directory: \nP")
|
||||
(with-current-buffer (get-buffer-create gulp-tmp-buffer)
|
||||
(let ((m-p-alist (gulp-create-m-p-alist
|
||||
(directory-files dir nil "^[^=].*\\.el$" t)
|
||||
(directory-files dir nil "\\`[^=].*\\.el\\'" t)
|
||||
dir))
|
||||
;; Temporarily inhibit undo in the *gulp* buffer.
|
||||
(buffer-undo-list t)
|
||||
|
|
|
|||
|
|
@ -597,18 +597,20 @@ CALLBACK expects (ENTRIES &optional MORE-TO-COME); see
|
|||
(unless (file-writable-p rl-dir)
|
||||
(error "No writable revlib directory found"))
|
||||
(message "Revlib at %s" rl-dir)
|
||||
(let* ((archives (directory-files rl-dir 'full "[^.]\\|..."))
|
||||
(let* ((archives (directory-files rl-dir 'full (rx (or (not ".") "..."))))
|
||||
(categories
|
||||
(apply 'append
|
||||
(mapcar (lambda (dir)
|
||||
(when (file-directory-p dir)
|
||||
(directory-files dir 'full "[^.]\\|...")))
|
||||
(directory-files dir 'full
|
||||
(rx (or (not ".") "...")))))
|
||||
archives)))
|
||||
(branches
|
||||
(apply 'append
|
||||
(mapcar (lambda (dir)
|
||||
(when (file-directory-p dir)
|
||||
(directory-files dir 'full "[^.]\\|...")))
|
||||
(directory-files dir 'full
|
||||
(rx (or (not ".") "...")))))
|
||||
categories)))
|
||||
(versions
|
||||
(apply 'append
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue