emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108829: Spelling fixes.


From: Paul Eggert
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108829: Spelling fixes.
Date: Mon, 02 Jul 2012 01:00:05 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108829
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Mon 2012-07-02 01:00:05 -0700
message:
  Spelling fixes.
modified:
  etc/NEWS
  lisp/ChangeLog
  lisp/emacs-lisp/byte-opt.el
  lisp/emacs-lisp/bytecomp.el
  lisp/loadup.el
  lisp/net/ange-ftp.el
  lisp/org/ChangeLog
  src/dosfns.c
  src/msdos.c
=== modified file 'etc/NEWS'
--- a/etc/NEWS  2012-06-28 10:40:24 +0000
+++ b/etc/NEWS  2012-07-02 08:00:05 +0000
@@ -164,8 +164,8 @@
 
 The variables `term-default-fg-color' and `term-default-bg-color' are
 now deprecated in favor of the `term-face' face, that you can
-customize.  Also, it is now possible to cutomize how are displayed the
-ANSI terminal colors and styles by cutomizing the corresponding
+customize.  Also, it is now possible to customize how are displayed the
+ANSI terminal colors and styles by customizing the corresponding
 `term-color-<COLOR>', `term-color-underline' and `term-color-bold'
 faces.
 

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-07-01 11:05:17 +0000
+++ b/lisp/ChangeLog    2012-07-02 08:00:05 +0000
@@ -1,3 +1,9 @@
+2012-07-02  Paul Eggert  <address@hidden>
+
+       Spelling fixes.
+       * emacs-lisp/bytecomp.el (byte-compile--reify-function):
+       Rename from byte-compile--refiy-function.  All uses changed.
+
 2012-07-01  Chong Yidong  <address@hidden>
 
        * xml.el (xml--parse-buffer): New function.  Move most of

=== modified file 'lisp/emacs-lisp/byte-opt.el'
--- a/lisp/emacs-lisp/byte-opt.el       2012-06-28 03:31:27 +0000
+++ b/lisp/emacs-lisp/byte-opt.el       2012-07-02 08:00:05 +0000
@@ -284,7 +284,7 @@
                           ;; been preprocessed!
                           `(function ,fn)
                         (byte-compile-preprocess
-                         (byte-compile--refiy-function fn)))))
+                         (byte-compile--reify-function fn)))))
            (if (eq (car-safe newfn) 'function)
                (byte-compile-unfold-lambda `(,(cadr newfn) ,@(cdr form)))
              (byte-compile-log-warning

=== modified file 'lisp/emacs-lisp/bytecomp.el'
--- a/lisp/emacs-lisp/bytecomp.el       2012-06-28 03:31:27 +0000
+++ b/lisp/emacs-lisp/bytecomp.el       2012-07-02 08:00:05 +0000
@@ -2367,7 +2367,7 @@
       ;;(byte-compile-set-symbol-position name)
       (byte-compile-warn "probable `\"' without `\\' in doc string of %s"
                          name))
-    
+
     (if (not (listp body))
         ;; The precise definition requires evaluation to find out, so it
         ;; will only be known at runtime.
@@ -2451,7 +2451,7 @@
           (- (position-bytes (point)) (point-min) -1)
         (goto-char (point-max))))))
 
-(defun byte-compile--refiy-function (fun)
+(defun byte-compile--reify-function (fun)
   "Return an expression which will evaluate to a function value FUN.
 FUN should be either a `lambda' value or a `closure' value."
   (pcase-let* (((or (and `(lambda ,args . ,body) (let env nil))
@@ -2488,7 +2488,7 @@
       (when (symbolp form)
         (unless (memq (car-safe fun) '(closure lambda))
           (error "Don't know how to compile %S" fun))
-        (setq fun (byte-compile--refiy-function fun))
+        (setq fun (byte-compile--reify-function fun))
         (setq lexical-binding (eq (car fun) 'closure)))
       (unless (eq (car-safe fun) 'lambda)
         (error "Don't know how to compile %S" fun))

=== modified file 'lisp/loadup.el'
--- a/lisp/loadup.el    2012-06-30 21:10:50 +0000
+++ b/lisp/loadup.el    2012-07-02 08:00:05 +0000
@@ -256,12 +256,12 @@
 (load "site-load" t)
 
 ;; ¡¡¡ Big Ugly Hack !!!
-;; src/boostrap-emacs is mostly used to compile .el files, so it needs
+;; src/bootstrap-emacs is mostly used to compile .el files, so it needs
 ;; macroexp, bytecomp, cconv, and byte-opt to be fast.  Generally this is done
 ;; by compiling those files first, but this only makes a difference if those
 ;; files are not preloaded.  As it so happens, macroexp.el tends to be
-;; accidentally preloaded in src/boostrap-emacs because cl.el and cl-macs.el
-;; require it.  So lets unload it here, if needed, to make sure the
+;; accidentally preloaded in src/bootstrap-emacs because cl.el and cl-macs.el
+;; require it.  So let's unload it here, if needed, to make sure the
 ;; byte-compiled version is used.
 (if (or (not (fboundp 'macroexpand-all))
         (byte-code-function-p (symbol-function 'macroexpand-all)))

=== modified file 'lisp/net/ange-ftp.el'
--- a/lisp/net/ange-ftp.el      2012-06-29 07:14:36 +0000
+++ b/lisp/net/ange-ftp.el      2012-07-02 08:00:05 +0000
@@ -1201,7 +1201,7 @@
 (defun ange-ftp-get-passwd (host user)
   "Return the password for specified HOST and USER, asking user if necessary."
   ;; If `non-essential' is non-nil, don't ask for a password.  It will
-  ;; be catched in Tramp.
+  ;; be caught in Tramp.
   (when non-essential
     (throw 'non-essential 'non-essential))
 
@@ -1781,7 +1781,7 @@
 (defun ange-ftp-gwp-start (host user name args)
   "Login to the gateway machine and fire up an FTP process."
   ;; If `non-essential' is non-nil, don't reopen a new connection.  It
-  ;; will be catched in Tramp.
+  ;; will be caught in Tramp.
   (when non-essential
     (throw 'non-essential 'non-essential))
   (let (;; It would be nice to make process-connection-type nil,
@@ -1916,7 +1916,7 @@
 If HOST is only FTP-able through a gateway machine then spawn a shell
 on the gateway machine to do the FTP instead."
   ;; If `non-essential' is non-nil, don't reopen a new connection.  It
-  ;; will be catched in Tramp.
+  ;; will be caught in Tramp.
   (when non-essential
     (throw 'non-essential 'non-essential))
   (let* ((use-gateway (ange-ftp-use-gateway-p host))
@@ -2138,7 +2138,7 @@
     (if (and proc (memq (process-status proc) '(run open)))
        proc
       ;; If `non-essential' is non-nil, don't reopen a new connection.  It
-      ;; will be catched in Tramp.
+      ;; will be caught in Tramp.
       (when non-essential
        (throw 'non-essential 'non-essential))
 

=== modified file 'lisp/org/ChangeLog'
--- a/lisp/org/ChangeLog        2012-06-17 08:53:31 +0000
+++ b/lisp/org/ChangeLog        2012-07-02 08:00:05 +0000
@@ -11671,7 +11671,7 @@
 2010-11-11  Dan Davison  <address@hidden>
 
        * org.el (org-src-fontify-natively): Set to nil by default.
-       Supply cutomize interface.
+       Supply customize interface.
 
 2010-11-11  Bastien Guerry  <address@hidden>
 

=== modified file 'src/dosfns.c'
--- a/src/dosfns.c      2012-06-30 15:32:51 +0000
+++ b/src/dosfns.c      2012-07-02 08:00:05 +0000
@@ -23,7 +23,7 @@
 /* The entire file is within this conditional */
 
 #include <stdio.h>
-/* gettine and settime in dos.h clash with their namesakes from
+/* gettime and settime in dos.h clash with their namesakes from
    gnulib, so we move out of our way the prototypes in dos.h.  */
 #define gettime dos_h_gettime_
 #define settime dos_h_settime_
@@ -770,4 +770,3 @@
   dos_decimal_point = 0;
 }
 #endif /* MSDOS */
-

=== modified file 'src/msdos.c'
--- a/src/msdos.c       2012-06-30 15:32:51 +0000
+++ b/src/msdos.c       2012-07-02 08:00:05 +0000
@@ -31,7 +31,7 @@
 #include <time.h>
 #include <sys/param.h>
 #include <sys/time.h>
-/* gettine and settime in dos.h clash with their namesakes from
+/* gettime and settime in dos.h clash with their namesakes from
    gnulib, so we move out of our way the prototypes in dos.h.  */
 #define gettime dos_h_gettime_
 #define settime dos_h_settime_


reply via email to

[Prev in Thread] Current Thread [Next in Thread]