1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

Spelling fixes

* lisp/progmodes/cc-langs.el:
(c-ambiguous-overloadable-or-identifier-prefixes): Rename from
c-ambiguous-overloadable-or-identifier-prefices.  Caller changed.
This commit is contained in:
Paul Eggert 2017-09-10 09:20:27 -07:00
parent 4973788c6a
commit cdef84fb68
10 changed files with 12 additions and 12 deletions

View file

@ -7641,7 +7641,7 @@ javascript:location.href='org-protocol://open-source?&url='+
@vindex org-protocol-project-alist @vindex org-protocol-project-alist
The variable @code{org-protocol-project-alist} maps URLs to local file names, 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} 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 @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 @url{http://orgmode.org/worg/} contents at @file{/home/user/worg}, you can
set @code{org-protocol-project-alist} to the following set @code{org-protocol-project-alist} to the following

View file

@ -20919,7 +20919,7 @@
(ses-formula-references): Robustify against self-referring cells. (ses-formula-references): Robustify against self-referring cells.
(ses-mode): Use ses-set-localvars. (ses-mode): Use ses-set-localvars.
(ses-command-hook): Add call to ses-initialize-Dijkstra-attempt (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-initialize-Dijkstra-attempt): New function.
(ses-recalculate-cell): Update for cycle detection based on (ses-recalculate-cell): Update for cycle detection based on
Dijkstra algorithm. Dijkstra algorithm.

View file

@ -14161,7 +14161,7 @@
2014-01-10 Eric S. Raymond <esr@thyrsus.com> 2014-01-10 Eric S. Raymond <esr@thyrsus.com>
* version.el (emacs-bzr-get-version): Restore compatibilty with * version.el (emacs-bzr-get-version): Restore compatibility with
24.3 (Tested). 24.3 (Tested).
2014-01-10 Bozhidar Batsov <bozhidar@batsov.com> 2014-01-10 Bozhidar Batsov <bozhidar@batsov.com>

View file

@ -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 (make-obsolete-variable 'c-opt-op-identitier-prefix 'c-opt-op-identifier-prefix
"CC Mode 5.31.4, 2006-04-14") "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 ;; A list of strings which can be either overloadable operators or
;; identifier prefixes. ;; identifier prefixes.
t (c--intersection 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 ;; A regexp matching strings which can be either overloadable operators
;; or identifier prefixes. ;; or identifier prefixes.
t (c-make-keywords-re 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-defvar c-ambiguous-overloadable-or-identifier-prefix-re
(c-lang-const c-ambiguous-overloadable-or-identifier-prefix-re)) (c-lang-const c-ambiguous-overloadable-or-identifier-prefix-re))

View file

@ -228,8 +228,8 @@ executable."
(and argument (string< "" argument) " ") (and argument (string< "" argument) " ")
argument)) argument))
;; For backward compatibilty, allow `executable-prefix-env' to be ;; For backward compatibility, allow `executable-prefix-env' to be
;; overriden by custom `executable-prefix'. ;; overridden by custom `executable-prefix'.
(if (string-match "#!\\([ \t]*/usr/bin/env[ \t]*\\)?$" executable-prefix) (if (string-match "#!\\([ \t]*/usr/bin/env[ \t]*\\)?$" executable-prefix)
(if executable-prefix-env (if executable-prefix-env
(setq argument (concat "/usr/bin/env " (setq argument (concat "/usr/bin/env "

View file

@ -43,7 +43,7 @@
;; Skip if emacsclient was compiled with -pg (bug#28319). ;; Skip if emacsclient was compiled with -pg (bug#28319).
;; Use ert--skip-unless rather than skip-unless to silence compiler. ;; Use ert--skip-unless rather than skip-unless to silence compiler.
(ert--skip-unless (not (and (stringp stat) (ert--skip-unless (not (and (stringp stat)
(string-match-p "rofiling" stat)))) (string-match-p "Profiling" stat))))
(should (eq 0 stat)))) (should (eq 0 stat))))
(ert-deftest emacsclient-test-alternate-editor-allows-arguments () (ert-deftest emacsclient-test-alternate-editor-allows-arguments ()

View file

@ -380,7 +380,7 @@
(ert-deftest dired-test-bug27940 () (ert-deftest dired-test-bug27940 ()
"Test for http://debbugs.gnu.org/27940 ." "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 (dired-test-with-temp-dirs
'just-empty-dirs 'just-empty-dirs
(let (asked) (let (asked)

View file

@ -2,7 +2,7 @@
;; Copyright (C) 2017 Free Software Foundation, Inc. ;; Copyright (C) 2017 Free Software Foundation, Inc.
;; Author: Tino Calacha <tino.calancha@gmail.com> ;; Author: Tino Calancha <tino.calancha@gmail.com>
;; Keywords: ;; Keywords:
;; This file is part of GNU Emacs. ;; This file is part of GNU Emacs.

View file

@ -2,7 +2,7 @@
;; Copyright (C) 2017 Free Software Foundation, Inc. ;; Copyright (C) 2017 Free Software Foundation, Inc.
;; Author: Tino Calacha <tino.calancha@gmail.com> ;; Author: Tino Calancha <tino.calancha@gmail.com>
;; Keywords: ;; Keywords:
;; This file is part of GNU Emacs. ;; This file is part of GNU Emacs.

View file

@ -505,7 +505,7 @@ See Bug#21722."
(setq-local fill-prefix " ") (setq-local fill-prefix " ")
(set-fill-column 5) (set-fill-column 5)
;; Shouldn't break after 'foo' (3 characters) when the next ;; 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. ;; lines.
(insert "foo bar") (insert "foo bar")
(do-auto-fill) (do-auto-fill)