]> git.eshelyaron.com Git - emacs.git/commitdiff
Spelling fixes.
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 Dec 2013 21:23:50 +0000 (13:23 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 8 Dec 2013 21:23:50 +0000 (13:23 -0800)
lisp/ChangeLog.10
lisp/emacs-lisp/debug.el
lisp/org/ox-ascii.el
src/ChangeLog.3
src/eval.c

index 30afe9ce9705216ca2339be353951988c6463fe3..74e05e40410f5f0a19d120c3e87ea96f4d95b457 100644 (file)
        add handling of entry attributes using diary-pull-attrs.
        (mark-calendar-days-named, mark-calendar-days-named)
        (mark-calendar-date-pattern, mark-calendar-month)
-       (add-to-diary-list): Add optional paramater `color' for passing
+       (add-to-diary-list): Add optional parameter `color' for passing
        face attribute info through the callchain.  Pass this parameter around.
 
 2003-02-11  Stefan Monnier  <monnier@cs.yale.edu>
index 87d1d1eae6403affb9c4cf646ebae6f0099ff95d..dbd0f092446ada802a8d6b7538b84eed6bb93a95 100644 (file)
@@ -642,7 +642,7 @@ The environment used is the one when entering the activation frame at point."
     (define-key map "h" 'describe-mode)
     (define-key map "q" 'top-level)
     (define-key map "e" 'debugger-eval-expression)
-    (define-key map "v" 'debugger-toggle-locals) ;"v" is for "v"ariables.
+    (define-key map "v" 'debugger-toggle-locals) ; "v" is for "variables".
     (define-key map " " 'next-line)
     (define-key map "R" 'debugger-record-expression)
     (define-key map "\C-m" 'debug-help-follow)
index 55bda8368e0a22885afc1be6953fdc0c5e3252f4..ad44517fb6cd1fa293418fb6482490b916264904 100644 (file)
@@ -1198,7 +1198,7 @@ contextual information."
     (todo type priority name tags contents width inlinetask info)
   "Format an inline task element for ASCII export.
 See `org-ascii-format-inlinetask-function' for a description
-of the paramaters."
+of the parameters."
   (let* ((utf8p (eq (plist-get info :ascii-charset) 'utf-8))
         (width (or width org-ascii-inlinetask-width)))
     (org-ascii--indent-string
index fb1b96f738ce779a4cfff23252864409769211f5..ff0f4bf7ae8e97acbdcf3d14d80290c0959918b1 100644 (file)
        longer DEFVARed: they are already declared in window.c.
 
        * screen.c (window_from_coordinates): Use Fnext_window, even if
-       MULTI_SCREEN, to obtain the next window.  This is an test.
-       Also, new paramater part returns text or modeline symbol.
+       MULTI_SCREEN, to obtain the next window.  This is a test.
+       Also, new parameter part returns text or modeline symbol.
        (Flocate_window_from_coordinates): Pass &part to
        window_from_coordinates.
        (coordinates_in_window): Don't say modeline if window_height is 1,
index 81666830f4ed5c85c3a45485880d9a42abc7802e..1dca9295cfb88307c412732d43bb4d8419bc558a 100644 (file)
@@ -3597,7 +3597,7 @@ NFRAMES and BASE specify the activation frame to use, as in `backtrace-frame'.
   /* The specpdl entries normally contain the symbol being bound along with its
      `old_value', so it can be restored.  The new value to which it is bound is
      available in one of two places: either in the current value of the
-     variable (if it hasn't been rebount yet) or in the `old_value' slot of the
+     variable (if it hasn't been rebound yet) or in the `old_value' slot of the
      next specpdl entry for it.
      `backtrace_eval_unrewind' happens to swap the role of `old_value'
      and "new value", so we abuse it here, to fetch the new value.