From: Basil L. Contovounesios Date: Thu, 11 Mar 2021 22:27:20 +0000 (+0000) Subject: ; Fix some typos. X-Git-Tag: emacs-28.0.90~3312 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=17cdb732a76796e585dd9defe8fa5a2724a9c1db;p=emacs.git ; Fix some typos. --- diff --git a/etc/NEWS b/etc/NEWS index b3f4ade3373..4b8700a01cc 100644 --- a/etc/NEWS +++ b/etc/NEWS @@ -1441,9 +1441,9 @@ decaying average of delays, and if this number gets too high, the animation is stopped. +++ -*** The 'n' and 'p' commands (next/previous image) now respects dired order. +*** The 'n' and 'p' commands (next/previous image) now respect Dired order. These commands would previously display the next/previous image in -alphabetical order, but will now find the "parent" dired buffer and +lexicographic order, but will now find the "parent" Dired buffer and select the next/previous image file according to how the files are sorted there. The commands have also been extended to work when the "parent" buffer is an archive mode (i.e., zip file or the like) or tar diff --git a/lisp/button.el b/lisp/button.el index 043de8eeb7b..69d70540c06 100644 --- a/lisp/button.el +++ b/lisp/button.el @@ -472,8 +472,8 @@ mouse event is used. If there's no button at POS, do nothing and return nil, otherwise return t. -To get a description of what function will called when pushing a -butting, use the `button-describe' command." +To get a description of the function that will be invoked when +pushing a button, use the `button-describe' command." (interactive (list (if (integerp last-command-event) (point) last-command-event))) (if (and (not (integerp pos)) (eventp pos)) diff --git a/lisp/image-mode.el b/lisp/image-mode.el index 8b61aa7e73f..e9a962ffe96 100644 --- a/lisp/image-mode.el +++ b/lisp/image-mode.el @@ -1144,8 +1144,8 @@ replacing the current Image mode buffer." (funcall next)))) (defun image-mode--directory-buffers (file) - "Return a alist of type/buffer for all \"parent\" buffers to image FILE. -This is normally a list of dired buffers, but can also be archive and + "Return an alist of type/buffer for all \"parent\" buffers to image FILE. +This is normally a list of Dired buffers, but can also be archive and tar mode buffers." (let ((buffers nil) (dir (file-name-directory file))) diff --git a/lisp/progmodes/project.el b/lisp/progmodes/project.el index c4bcf88e4ce..18da4398f46 100644 --- a/lisp/progmodes/project.el +++ b/lisp/progmodes/project.el @@ -106,7 +106,7 @@ ;; ;; - Write a new function that will determine the current project ;; based on the directory and add it to `project-find-functions' -;; (which see) using `add-hook'. It is a good idea to depend on the +;; (which see) using `add-hook'. It is a good idea to depend on the ;; directory only, and not on the current major mode, for example. ;; Because the usual expectation is that all files in the directory ;; belong to the same project (even if some/most of them are ignored).