]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix typos.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 14 Jul 2011 01:09:00 +0000 (03:09 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 14 Jul 2011 01:09:00 +0000 (03:09 +0200)
admin/charsets/mule-charsets.el
lisp/ChangeLog
lisp/ChangeLog.6
lisp/emacs-lisp/testcover.el
lisp/follow.el
lisp/gnus/ChangeLog.2
lisp/jka-cmpr-hook.el
lisp/winner.el
src/ChangeLog.6
test/eshell.el

index 59969c3df28da63345b7e08b46d0b45babf59237..9ac08bef724654976dbe4707de1d5ac5d2f30d6d 100644 (file)
@@ -1,4 +1,4 @@
-;; mule-charsets.el -- Generate Mule-orignal charset maps.
+;; mule-charsets.el -- Generate Mule-original charset maps.
 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
 ;;   Registration Number H13PRO009
index b78a6a4c58089cb75d0ea47664a7956bc5b25cfd..4aa24d499e2caf9f6b046d9d04195a8c4b0dc13e 100644 (file)
@@ -1,3 +1,9 @@
+2011-07-14  Juanma Barranquero  <lekktu@gmail.com>
+
+       * follow.el (follow-debug-message, follow-redisplay):
+       * jka-cmpr-hook.el (with-auto-compression-mode):
+       Fix typos in docstrings.
+
 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * subr.el (with-silent-modifications): Clarify somewhat what the
index 2f73c2902319468dd4f993e2b4b885511a3bb9ad..7ba9261ccf04c6571f8cea9c56988156ed9eac89 100644 (file)
        (find-file-noselect): Use it if new optional argument `rawfile' is
        non-nil.
 
-       * startup.el (command-line-1): Add option --eval to evalute an
+       * startup.el (command-line-1): Add option --eval to evaluate an
        expression on the command line and print the result.
 
 1995-08-14  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
index 2f168180cf6b6420447a19adcab13932f1eb6e76..4c83e7e2e0dc244d8cbfe0d043b02b3baffc12ae 100644 (file)
@@ -28,7 +28,7 @@
 ;; * Use `testcover-mark-all' to add overlay "splotches" to the Lisp file's
 ;;   buffer to show where coverage is lacking.  Normally, a red splotch
 ;;   indicates the form was never evaluated; a brown splotch means it always
-;;   evaluted to the same value.
+;;   evaluated to the same value.
 ;; * Use `testcover-next-mark' (bind it to a key!) to jump to the next spot
 ;;   that has a splotch.
 
index 9bf472e547c8b1bc18df2590529d31763437c725..94a542f1016df901ad6728cae69ab57ac048e7bb 100644 (file)
 ;; (setq pixel-vertical-clip-threshold 30)
 
 
-;; The correct way to cofigurate Follow mode, or any other mode for
+;; The correct way to configurate Follow mode, or any other mode for
 ;; that matter, is to create one or more functions that do
 ;; whatever you would like to do.  These functions are then added to
 ;; a hook.
 ;; positions in the text? Here are two simple methods to use:
 ;;
 ;; 1) Use multiple frames; `follow' mode only affects windows displayed
-;;    in the same frame. (My apoligies to you who can't use frames.)
+;;    in the same frame. (My apologies to you who can't use frames.)
 ;;
 ;; 2) Bind `follow-mode' to key so you can turn it off whenever
 ;;    you want to view two locations.  Of course, `follow' mode can
 ;;
 ;; Follow mode does this in three places:
 ;; 1) After each user command.
-;; 2) After a process output has been perfomed.
+;; 2) After a process output has been performed.
 ;; 3) When a scrollbar has been moved.
 ;;
 ;; This will cover most situations. (Let me know if there are other
 ;; situations that should be covered.)
 ;;
 ;; Note that only the selected window is checked, for the reason of
-;; efficiency and code complexity. (I.e. it is possible to make a
-;; non-selected windows unaligned.  It will, however, pop right back
+;; efficiency and code complexity.  (I.e. it is possible to make a
+;; non-selected window unaligned.  It will, however, pop right back
 ;; when it is selected.)
 
 ;;}}}
 ;;     (funcall (symbol-function 'set) 'bar ...)
 ;;
 ;; Note: When this file is interpreted, `eval-when-compile' is
-;; evaluted.  Since it doesn't hurt to evaluate it, but it is a bit
+;; evaluated.  Since it doesn't hurt to evaluate it, but it is a bit
 ;; annoying, we test if the byte-compiler has been loaded.  This can,
 ;; of course, lead to some occasional unintended evaluation...
 ;;
@@ -456,7 +456,7 @@ Used by `follow-window-size-change'.")
 ;; the variable is not set.
 
 (defsubst follow-debug-message (&rest args)
-  "Like message, but only active when `follow-debug' is non-nil."
+  "Like `message', but only active when `follow-debug' is non-nil."
   (if (and (boundp 'follow-debug) follow-debug)
       (apply 'message args)))
 
@@ -1000,7 +1000,7 @@ Note that this handles the case when the cache has been set to nil."
     res))
 
 
-;; Make sure WIN always starts at the beginning of an whole screen
+;; Make sure WIN always starts at the beginning of a whole screen
 ;; line. If WIN is not aligned the start is updated which probably
 ;; will lead to a redisplay of the screen later on.
 ;;
@@ -1057,8 +1057,8 @@ Return the selected window."
     win))
 
 
-;; Lets select a window showing the end. Make sure we only select it if it
-;; it wasn't just moved here. (i.e. M-> shall not unconditionally place
+;; Lets select a window showing the end. Make sure we only select it if
+;; it wasn't just moved here. (I.e. M-> shall not unconditionally place
 ;; the point in the selected window.)
 ;;
 ;; (Compatibility cludge: in Emacs `window-end' is equal to `point-max';
@@ -1134,7 +1134,7 @@ Otherwise, return nil."
   "Reposition the WINDOWS around WIN.
 Should the point be too close to the roof we redisplay everything
 from the top.  WINDOWS should contain a list of windows to
-redisplay, it is assumed that WIN is a member of the list.
+redisplay; it is assumed that WIN is a member of the list.
 Should WINDOWS be nil, the windows displaying the
 same buffer as WIN, in the current frame, are used.
 Should WIN be nil, the selected window is used.
@@ -1231,7 +1231,7 @@ should be a member of WINDOWS, starts at position START."
                 (setq done t res (point)))
                ((= win-start start)    ; Perfect match, use this value
                 (setq done t res (point)))
-               ((< win-start start)    ; Walked to far, use preious result
+               ((< win-start start)    ; Walked to far, use previous result
                 (setq done t))
                (t                      ; Store result for next iteration
                 (setq res (point))))))
@@ -1241,12 +1241,12 @@ should be a member of WINDOWS, starts at position START."
 ;;{{{ Avoid tail recenter
 
 ;; This sets the window internal flag `force_start'. The effect is that
-;; windows only displaying the tail isn't recentered.
+;; windows only displaying the tail aren't recentered.
 ;; Has to be called before every redisplay... (Great isn't it?)
 ;;
 ;; XEmacs doesn't recenter the tail, GOOD!
 ;;
-;; A window displaying only the tail, is a windows whose
+;; A window displaying only the tail, is a window whose
 ;; window-start position is equal to (point-max) of the buffer it
 ;; displays.
 ;;
@@ -1487,12 +1487,12 @@ non-first windows in Follow mode."
 ;;;; Scroll-bar support code.
 
 ;; Why is it needed? Well, if the selected window is in follow mode,
-;; all its follower stick to it blindly. If one of them is scrolled,
+;; all its followers stick to it blindly. If one of them is scrolled,
 ;; it immediately returns to the original position when the mouse is
 ;; released. If the selected window is not a follower of the dragged
 ;; window the windows will be unaligned.
 
-;; The advices doesn't get compiled. Aestetically, this might be a
+;; The advices don't get compiled. Aesthetically, this might be a
 ;; problem but in practical life it isn't.
 
 ;; Discussion: Now when the other windows in the chain follow the
@@ -1700,8 +1700,8 @@ magic stuff before the real process filter is called."
 ;;}}}
 ;;{{{ Start/stop interception of processes.
 
-;; Normally, all new processed are intercepted by our `set-process-filter'.
-;; This is needed to intercept old processed that were started before we were
+;; Normally, all new processes are intercepted by our `set-process-filter'.
+;; This is needed to intercept old processes that were started before we were
 ;; loaded, and processes we have forgotten by calling
 ;; `follow-stop-intercept-process-output'.
 
@@ -1749,7 +1749,7 @@ report this using the `report-emacs-bug' function."
 
 ;; The following section is a naive method to make buffers with
 ;; process output to work with Follow mode. Whenever the start of the
-;; window displaying the buffer is moved, we moves it back to its
+;; window displaying the buffer is moved, we move it back to its
 ;; original position and try to select a new window.  (If we fail,
 ;; the normal redisplay functions of Emacs will scroll it right
 ;; back!)
@@ -1767,7 +1767,7 @@ report this using the `report-emacs-bug' function."
 
     ;; If input is pending, the `sit-for' below won't redraw the
     ;; display. In that case, calling `follow-avoid-tail-recenter' may
-    ;; provoke the process hadnling code to sceduling a redisplay.
+    ;; provoke the process handling code to schedule a redisplay.
     ;(or (input-pending-p)
     ; (follow-avoid-tail-recenter))
 
@@ -1788,7 +1788,7 @@ report this using the `report-emacs-bug' function."
              (inhibit-read-only t))
          (save-excursion
            (goto-char (process-mark proc))
-           ;; `insert-before-markers' just in case the users next
+           ;; `insert-before-markers' just in case the user's next
            ;; command is M-y.
            (insert-before-markers output)
            (set-marker (process-mark proc) (point)))
@@ -1848,7 +1848,7 @@ report this using the `report-emacs-bug' function."
                   (t
                    (follow-debug-message "filter: nothing")))
 
-                 ;; Here we have slected a window. Make sure the
+                 ;; Here we have selected a window. Make sure the
                  ;; windows are aligned and the point is visible
                  ;; in the selected window.
                  (if (and (not (follow-pos-visible
@@ -1866,7 +1866,7 @@ report this using the `report-emacs-bug' function."
     ;; return to the original window.
     (if return-to-orig-win
        (select-window orig-win))
-    ;; Restore the orignal buffer, unless the filter explicitly
+    ;; Restore the original buffer, unless the filter explicitly
     ;; changed buffer or killed the old buffer.
     (if (and (eq buf (current-buffer))
             (buffer-name old-buffer))
index 4882032f284c4ee844045c93bdc3b580c27c0581..779c84296f4fbdbb9a3684b1cff69c1057bb3819 100644 (file)
        (nnmaildir--with-nntp-buffer, nnmaildir--with-work-buffer,
        nnmaildir--with-nov-buffer, nnmaildir--with-move-buffer,
        nnmaildir--group-ls): New macros/functions.  Use them.
-       (nnmaildir--unlink): Evalutate argument only once.
+       (nnmaildir--unlink): Evaluate argument only once.
 
 2002-03-27  Jesper Harder  <harder@ifa.au.dk>
 
index fda9804bbb88e077bd5cae4f87eaa07798b67901..e1cf2a661ed735445a9e377e295916db43d73220 100644 (file)
@@ -340,7 +340,7 @@ Return the new status of auto compression (non-nil means on)."
      (t (jka-compr-uninstall)))))
 
 (defmacro with-auto-compression-mode (&rest body)
-  "Evalute BODY with automatic file compression and uncompression enabled."
+  "Evaluate BODY with automatic file compression and uncompression enabled."
   (declare (indent 0))
   (let ((already-installed (make-symbol "already-installed")))
     `(let ((,already-installed (jka-compr-installed-p)))
index e5855ad8aacaabda968540d7ed77f87935f3508d..70038362c2e669da0685f24aa9ba6ae1b5301eaa 100644 (file)
@@ -145,7 +145,7 @@ You may want to include buffer names such as *Help*, *Apropos*,
 
 ;;; Saved configurations
 
-;; This variable contains the window cofiguration rings.
+;; This variable contains the window configuration rings.
 ;; The key in this alist is the frame.
 (defvar winner-ring-alist nil)
 
index d7903568102222305615616ec99a636b9f5876be..f9372aa666a31d43b6b36b70d1fa01e0bca8072c 100644 (file)
 
 1995-08-14  Erik Naggum  <erik@naggum.no>
 
-       * emacs.c (standard_args): Add option --eval to evalute an
+       * emacs.c (standard_args): Add option --eval to evaluate an
        expression on the command line and print the result.
 
 1995-08-14  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
index 3b392e84c24885d5f970330b90b93f2514a9be5f..8a9e62a759ac260847b2ca274efd7c21824250c3 100644 (file)
   (eshell-command-result-p "+ ${+ 1 2} 3" "6\n"))
 
 (eshell-deftest var interp-lisp
-  "Interpolate Lisp form evalution"
+  "Interpolate Lisp form evaluation"
   (eshell-command-result-p "+ $(+ 1 2) 3" "6\n"))
 
 (eshell-deftest var interp-concat