emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master cdef84f: Spelling fixes


From: Paul Eggert
Subject: [Emacs-diffs] master cdef84f: Spelling fixes
Date: Sun, 10 Sep 2017 12:24:42 -0400 (EDT)

branch: master
commit cdef84fb6893f69ffee1a99fe82a262e02e59bf5
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Spelling fixes
    
    * lisp/progmodes/cc-langs.el:
    (c-ambiguous-overloadable-or-identifier-prefixes): Rename from
    c-ambiguous-overloadable-or-identifier-prefices.  Caller changed.
---
 doc/misc/org.texi                 | 2 +-
 lisp/ChangeLog.16                 | 2 +-
 lisp/ChangeLog.17                 | 2 +-
 lisp/progmodes/cc-langs.el        | 4 ++--
 lisp/progmodes/executable.el      | 4 ++--
 test/lib-src/emacsclient-tests.el | 2 +-
 test/lisp/dired-tests.el          | 2 +-
 test/lisp/ls-lisp-tests.el        | 2 +-
 test/lisp/register-tests.el       | 2 +-
 test/lisp/simple-tests.el         | 2 +-
 10 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/doc/misc/org.texi b/doc/misc/org.texi
index 067ae7b..44fcb94 100644
--- a/doc/misc/org.texi
+++ b/doc/misc/org.texi
@@ -7641,7 +7641,7 @@ 
javascript:location.href='org-protocol://open-source?&url='+
 @vindex org-protocol-project-alist
 The variable @code{org-protocol-project-alist} maps URLs to local file names,
 by stripping URL parameters from the end and replacing the @code{:base-url}
-with @code{:working-diretory} and @code{:online-suffix} with
+with @code{:working-directory} and @code{:online-suffix} with
 @code{:working-suffix}.  For example, assuming you own a local copy of
 @url{http://orgmode.org/worg/} contents at @file{/home/user/worg}, you can
 set @code{org-protocol-project-alist} to the following
diff --git a/lisp/ChangeLog.16 b/lisp/ChangeLog.16
index ffd99f7..fb5aee1 100644
--- a/lisp/ChangeLog.16
+++ b/lisp/ChangeLog.16
@@ -20919,7 +20919,7 @@
        (ses-formula-references): Robustify against self-referring cells.
        (ses-mode): Use ses-set-localvars.
        (ses-command-hook): Add call to ses-initialize-Dijkstra-attempt
-       before lauching the update processing.
+       before launching the update processing.
        (ses-initialize-Dijkstra-attempt): New function.
        (ses-recalculate-cell): Update for cycle detection based on
        Dijkstra algorithm.
diff --git a/lisp/ChangeLog.17 b/lisp/ChangeLog.17
index 6dfddf7..5c415de 100644
--- a/lisp/ChangeLog.17
+++ b/lisp/ChangeLog.17
@@ -14161,7 +14161,7 @@
 
 2014-01-10  Eric S. Raymond  <address@hidden>
 
-       * version.el (emacs-bzr-get-version): Restore compatibilty with
+       * version.el (emacs-bzr-get-version): Restore compatibility with
        24.3 (Tested).
 
 2014-01-10  Bozhidar Batsov  <address@hidden>
diff --git a/lisp/progmodes/cc-langs.el b/lisp/progmodes/cc-langs.el
index d4eae06..8a4adf1 100644
--- a/lisp/progmodes/cc-langs.el
+++ b/lisp/progmodes/cc-langs.el
@@ -1185,7 +1185,7 @@ This regexp is assumed to not match any non-operator 
identifier."
 (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix
                        "CC Mode 5.31.4, 2006-04-14")
 
-(c-lang-defconst c-ambiguous-overloadable-or-identifier-prefices
+(c-lang-defconst c-ambiguous-overloadable-or-identifier-prefixes
   ;; A list of strings which can be either overloadable operators or
   ;; identifier prefixes.
   t (c--intersection
@@ -1199,7 +1199,7 @@ This regexp is assumed to not match any non-operator 
identifier."
   ;; A regexp matching strings which can be either overloadable operators
   ;; or identifier prefixes.
   t (c-make-keywords-re
-       t (c-lang-const c-ambiguous-overloadable-or-identifier-prefices)))
+       t (c-lang-const c-ambiguous-overloadable-or-identifier-prefixes)))
 (c-lang-defvar c-ambiguous-overloadable-or-identifier-prefix-re
   (c-lang-const c-ambiguous-overloadable-or-identifier-prefix-re))
 
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el
index 7c040e7..ebdb516 100644
--- a/lisp/progmodes/executable.el
+++ b/lisp/progmodes/executable.el
@@ -228,8 +228,8 @@ executable."
                         (and argument (string< "" argument) " ")
                         argument))
 
-  ;; For backward compatibilty, allow `executable-prefix-env' to be
-  ;; overriden by custom `executable-prefix'.
+  ;; For backward compatibility, allow `executable-prefix-env' to be
+  ;; overridden by custom `executable-prefix'.
   (if (string-match "#!\\([ \t]*/usr/bin/env[ \t]*\\)?$" executable-prefix)
       (if executable-prefix-env
           (setq argument (concat "/usr/bin/env "
diff --git a/test/lib-src/emacsclient-tests.el 
b/test/lib-src/emacsclient-tests.el
index 4b7fa47..beca972 100644
--- a/test/lib-src/emacsclient-tests.el
+++ b/test/lib-src/emacsclient-tests.el
@@ -43,7 +43,7 @@
      ;; Skip if emacsclient was compiled with -pg (bug#28319).
      ;; Use ert--skip-unless rather than skip-unless to silence compiler.
      (ert--skip-unless (not (and (stringp stat)
-                                 (string-match-p "rofiling" stat))))
+                                 (string-match-p "Profiling" stat))))
      (should (eq 0 stat))))
 
 (ert-deftest emacsclient-test-alternate-editor-allows-arguments ()
diff --git a/test/lisp/dired-tests.el b/test/lisp/dired-tests.el
index 3c460d0..1f6e060 100644
--- a/test/lisp/dired-tests.el
+++ b/test/lisp/dired-tests.el
@@ -380,7 +380,7 @@
 
 (ert-deftest dired-test-bug27940 ()
   "Test for http://debbugs.gnu.org/27940 ."
-  ;; If just empty dirs we shouln't be prompted.
+  ;; If just empty dirs we shouldn't be prompted.
   (dired-test-with-temp-dirs
    'just-empty-dirs
    (let (asked)
diff --git a/test/lisp/ls-lisp-tests.el b/test/lisp/ls-lisp-tests.el
index d24b30e..1698e09 100644
--- a/test/lisp/ls-lisp-tests.el
+++ b/test/lisp/ls-lisp-tests.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2017 Free Software Foundation, Inc.
 
-;; Author: Tino Calacha <address@hidden>
+;; Author: Tino Calancha <address@hidden>
 ;; Keywords:
 
 ;; This file is part of GNU Emacs.
diff --git a/test/lisp/register-tests.el b/test/lisp/register-tests.el
index 0425bc0..2e31602 100644
--- a/test/lisp/register-tests.el
+++ b/test/lisp/register-tests.el
@@ -2,7 +2,7 @@
 
 ;; Copyright (C) 2017 Free Software Foundation, Inc.
 
-;; Author: Tino Calacha <address@hidden>
+;; Author: Tino Calancha <address@hidden>
 ;; Keywords:
 
 ;; This file is part of GNU Emacs.
diff --git a/test/lisp/simple-tests.el b/test/lisp/simple-tests.el
index 729001b..7cb7107 100644
--- a/test/lisp/simple-tests.el
+++ b/test/lisp/simple-tests.el
@@ -505,7 +505,7 @@ See Bug#21722."
     (setq-local fill-prefix "   ")
     (set-fill-column 5)
     ;; Shouldn't break after 'foo' (3 characters) when the next
-    ;; line is indented >= to that, that woudln't result in shorter
+    ;; line is indented >= to that, that wouldn't result in shorter
     ;; lines.
     (insert "foo bar")
     (do-auto-fill)



reply via email to

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