Merge from origin/emacs-25

3d63b48 Update ChangeLog files and authors.el
9d30264 Fix menu bindings of Dired 'A' and 'Q' commands
a725592 Avoid errors in shr-pixel-column due to dedicated windows
3138598 Update format-time-string documentation
This commit is contained in:
Paul Eggert 2016-12-07 12:36:38 -08:00
commit c26605861e
5 changed files with 1396 additions and 4 deletions

File diff suppressed because it is too large Load diff

View file

@ -855,6 +855,7 @@ in the repository.")
("emacs-lisp/assoc.el" . "assoc.el")
("emacs-lisp/cust-print.el" . "cust-print.el")
("emacs-lisp/gulp.el" . "gulp.el")
("lisp/abbrevlist.el" . "abbrevlist.el")
("emulation/crisp.el" . "crisp.el")
("emulation/tpu-edt.el" . "tpu-edt.el")
("emulation/tpu-extras.el" . "tpu-extras.el")
@ -865,6 +866,7 @@ in the repository.")
("mail/mailpost.el" . "mailpost.el")
("net/eudcb-ph.el" . "eudcb-ph.el")
("play/bruce.el" . "bruce.el")
("play/landmark.el" . "landmark.el")
("lisp/play/landmark.el" . "landmark.el")
("play/yow.el" . "yow.el")
("patcomp.el" . "patcomp.el")

View file

@ -1501,6 +1501,12 @@ This stands for the day of month, zero-padded.
This is a synonym for @samp{%m/%d/%y}.
@item %e
This stands for the day of month, blank-padded.
@item %F
This stands for the ISO 8601 date format, i.e., @samp{"%Y-%m-%d"}.
@item %g
This stands for the year corresponding to the ISO week within the century.
@item %G
This stands for the year corresponding to the ISO week.
@item %h
This is a synonym for @samp{%b}.
@item %H
@ -1537,9 +1543,13 @@ This stands for the seconds (00--59).
This stands for a tab character.
@item %T
This is a synonym for @samp{%H:%M:%S}.
@item %u
This stands for the numeric day of week (1--7). Monday is day 1.
@item %U
This stands for the week of the year (01--52), assuming that weeks
start on Sunday.
@item %V
This stands for the week of the year according to ISO 8601.
@item %w
This stands for the numeric day of week (0--6). Sunday is day 0.
@item %W

View file

@ -1845,11 +1845,11 @@ Do so according to the former subdir alist OLD-SUBDIR-ALIST."
'("--"))
(define-key map [menu-bar operate query-replace]
'(menu-item "Query Replace in Files..." dired-do-query-replace-regexp
:help "Replace regexp in marked files"))
'(menu-item "Query Replace in Files..." dired-do-find-regexp-and-replace
:help "Replace regexp matches in marked files"))
(define-key map [menu-bar operate search]
'(menu-item "Search Files..." dired-do-search
:help "Search marked files for regexp"))
'(menu-item "Search Files..." dired-do-find-regexp
:help "Search marked files for matches of regexp"))
(define-key map [menu-bar operate isearch-regexp]
'(menu-item "Isearch Regexp Files..." dired-do-isearch-regexp
:help "Incrementally search marked files for regexp"))

View file

@ -540,6 +540,9 @@ size, and full-buffer size."
(current-column)
(if (not (get-buffer-window (current-buffer)))
(save-window-excursion
;; Avoid errors if the selected window is a dedicated one,
;; and they just want to insert a document into it.
(set-window-dedicated-p nil nil)
(set-window-buffer nil (current-buffer))
(car (window-text-pixel-size nil (line-beginning-position) (point))))
(car (window-text-pixel-size nil (line-beginning-position) (point))))))