]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos
authorStefan Kangas <stefan@marxist.se>
Fri, 3 Sep 2021 09:13:53 +0000 (11:13 +0200)
committerStefan Kangas <stefan@marxist.se>
Fri, 3 Sep 2021 11:05:32 +0000 (13:05 +0200)
30 files changed:
ChangeLog.2
ChangeLog.3
admin/nt/dist-build/build-zips.sh
configure.ac
doc/lispref/display.texi
etc/NEWS
etc/refcards/pl-refcard.tex
lib-src/etags.c
lisp/ChangeLog.7
lisp/ChangeLog.8
lisp/bookmark.el
lisp/emacs-lisp/comp-cstr.el
lisp/emacs-lisp/map-ynp.el
lisp/erc/erc.el
lisp/language/japan-util.el
lisp/net/dictionary.el
lisp/progmodes/cc-awk.el
lisp/progmodes/cc-engine.el
lisp/progmodes/elisp-mode.el
lisp/progmodes/hideif.el
lisp/progmodes/vhdl-mode.el
lisp/textmodes/bibtex.el
lisp/windmove.el
src/fns.c
src/frame.c
src/image.c
src/nsterm.m
test/lisp/net/socks-tests.el
test/lisp/progmodes/cperl-mode-resources/here-docs.pl
test/lisp/textmodes/fill-tests.el

index 7b40c54dc64a8e566744750bc9f0be1b7b1d50f4..3e227675e0d744cc5de01c170dc20257a9e62e20 100644 (file)
 2015-04-08  Artur Malabarba  <bruce.connor.am@gmail.com>
 
        * lisp/emacs-lisp/package.el (package-menu-mode): Mode-line notification
-       while dowloading information.
+       while downloading information.
 
        * lisp/emacs-lisp/package.el: More conservative `ensure-init-file'
        (package--ensure-init-file): Check file contents before visiting.
index 8b872a0726eaf6d06eea5f387cf35e338e310f6a..9ec19e91d7f6102611cbbaad226b2a85b12020c6 100644 (file)
        Fix the handling of font backend supersedence on MS-Windows
 
        * src/w32font.c (syms_of_w32font): Don't make the Uniscribe
-       font backend "superceded" here, ...
+       font backend "superseded" here, ...
        * src/w32uniscribe.c (syms_of_w32uniscribe_for_pdumper):
-       ... make it "superceded" here, only if the HarfBuzz DLL was
+       ... make it "superseded" here, only if the HarfBuzz DLL was
        successfully loaded.  This is because Emacs compiled with
        HarfBuzz support might run on a system without the DLL.
        * src/w32fns.c (Fx_create_frame, w32_create_tip_frame):
        electric--sort-post-self-insertion-hook.
 
        * lisp/emacs-lisp/syntax.el (syntax-propertize, syntax-ppss):
-       Use new `depth` arg to make sure noone accidentally gets added
+       Use new `depth` arg to make sure no one accidentally gets added
        after syntax-ppss-flush-cache.
 
        * doc/lispref/modes.texi (Setting Hooks): Document new `depth` arg.
 
        Use bignums when Emacs converts to and from system types like
        off_t for file sizes whose values can exceed fixnum range.
-       Formerly, Emacs sometimes generted floats and sometimes ad-hoc
+       Formerly, Emacs sometimes generated floats and sometimes ad-hoc
        conses of integers.  Emacs still accepts floats and conses for
        these system types, in case some stray Lisp code is generating
        them, though this usage is obsolescent.
        (g_b_init_compare_string_w): Move declaration to file scope.
        * src/w32heap.c (dumped_data_commit): Now static.
        (FREEABLE_P): Avoid warnings about pointer comparison with integer.
-       (mmap_realloc): Cast to 'char *' for arithmetics on void pointers.
+       (mmap_realloc): Cast to 'char *' for arithmetic on void pointers.
        * src/w32console.c (ctrl_c_handler, sys_tputs, sys_tgetstr)
        (evalcost, cmputc, cmcheckmagic, cmcostinit, cmgoto, Wcm_clear):
        Provide prototypes.
 
        Move package test files to new directory.
 
-        * test/lisp/emacs-lisp/package-tests.el: Update resoruce file location.
+        * test/lisp/emacs-lisp/package-tests.el: Update resource file location.
         * test/data/package: Moved to test/lisp/emacs-lisp/package-resources
 
 2015-11-24  Phillip Lord  <phillip.lord@russet.org.uk>
index 7bc6ea6a9e51da36842ab2b5f84aa3e9ab0af7cd..4c3a52af6a77574aedcc46b8d61e4a64956f5815 100755 (executable)
@@ -134,7 +134,7 @@ while getopts "gb:hnsiV:" opt; do
         echo "  -g git update and worktree only"
         echo "  -i build installer only"
         echo "  -n do not configure"
-        echo "  -s snaphot build"
+        echo "  -s snapshot build"
         exit 0
         ;;
     \?)
index 6d204b61030e9668688381ff4fc91cda48f5428c..418a62fd5ea5bbee0449d398319a0b9a8106f5e9 100644 (file)
@@ -5667,7 +5667,7 @@ gl_INIT
 CFLAGS=$SAVE_CFLAGS
 LIBS=$SAVE_LIBS
 
-# timer_getoverrun needs the same libarary as timer_settime
+# timer_getoverrun needs the same library as timer_settime
 OLD_LIBS=$LIBS
 LIBS="$LIB_TIMER_TIME $LIBS"
 AC_CHECK_FUNCS(timer_getoverrun)
index 7ab2896778da0e40bf78efc26be3259da68b2195..ca438c10ce27f2804a85536f4ec93d408b9f1017 100644 (file)
@@ -5970,7 +5970,7 @@ To @var{svg} add an embedded (raster) image placed at
 @code{:base-uri} specifies a (possibly non-existing) file name of the
 svg image to be created, thus all the embedded files are searched
 relatively to the @code{:base-uri} filename's directory.  If
-@code{:base-uri} is ommited, then filename from where svg image is
+@code{:base-uri} is omitted, then filename from where svg image is
 loaded is used.  Using @code{:base-uri} improves the performance of
 embedding large images, comparing to @code{svg-embed}, because all the
 work is done directly by librsvg.
index 0fe988a19ce189f0f8ea09d3c5fe9e840378b2e7..3fede93eae627d4f13bedb97c2df13db7ae20125 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -3181,7 +3181,7 @@ refers to the old state at FROM.
 
 +++
 ** 'overlays-in' now handles zero-length overlays slightly differently.
-Previosly, zero-length overlays at the end of the buffer were included
+Previously, zero-length overlays at the end of the buffer were included
 in the result (if the region queried for stopped at that position).
 The same was not the case if the buffer had been narrowed to exclude
 the real end of the buffer.  This has now been changed, and
index c9d96788c5d17964a05ac51e68f513cf79a2f7c7..5c12dbfbf57ac8183266a46ac79e884a5c13f5b6 100644 (file)
@@ -679,7 +679,7 @@ Napisz \kbd{F10} aby uaktywni/c menu w minibuforze.
 \key{przestaw {\bf linie}}{C-x C-t}
 \key{przestaw {\bf s-wyra/zenia}}{C-M-t}
 
-% Removed -- there is no Polish disctionary for ispell.
+% Removed -- there is no Polish dictionary for ispell.
 %\section{Spelling Check}
 %
 %\key{check spelling of current word}{M-\$}
index 88b49f803e9e32629a9e15698c7ca9fbaab2abfb..bd4d4fcf53a53ebad93d5848c08f858d6b11e3a9 100644 (file)
@@ -6259,7 +6259,7 @@ test_objc_is_mercury (char *this_file, language **lang)
        }
     }
 
-  /* Fallback heuristic test.  Not failsafe but errless in pratice.  */
+  /* Fallback heuristic test.  Not failsafe but errless in practice.  */
   ratio = ((float) rule_signs + percentage_signs + mercury_dots) / lines;
 
  out:
index 3de3f2f1571d08106486e1e44a83555359ae506d..3dd8313c6a34637407671afb0909b01b76e45737 100644 (file)
        the key line of an entry.
 
        * bibtex.el (bibtex-autokey-year-use-crossref-entry): New variable
-       to determine if crossreferenced entry should be used for autokey
+       to determine if cross-referenced entry should be used for autokey
        generation, if year field of current entry is absent.
        (bibtex-generate-autokey): Use this new variable.
 
index 3027463e539dd5d6fc5985559df003345321888e..39e757bfff1253f640d8166336cd04942ea79125 100644 (file)
        (bibtex-submit-bug-report): Use bibtex-version and
        bibtex-maintainer-salutation.
        (bibtex-entry-field-alist): Made booktitle field optional for
-       @inproceedings entries when crossreferenced.
+       @inproceedings entries when cross-referenced.
        (bibtex-entry-field-alist): Add booktitle field to proceedings
        entry type (for cross referencing). Thanks to Wagner Toledo Correa
        for the suggestion.
index ff9b8ab1388d54185acbb37a1a9079b106041826..b340d379b3f7b15a80ddb48065b029fb903b4447 100644 (file)
@@ -27,7 +27,7 @@
 ;; associates a string with a location in a certain file.  Thus, you
 ;; can navigate your way to that location by providing the string.
 ;;
-;; Type `M-x customize-group RET boomark RET' for user options.
+;; Type `M-x customize-group RET bookmark RET' for user options.
 
 \f
 ;;; Code:
index 3c5578217aa491a330db00f83c028a2f8277ed5e..6a3f6046d1cdc5d73c3cc6102a8430d0b634dd4f 100644 (file)
@@ -152,7 +152,7 @@ Integer values are handled in the `range' slot.")
 (defun comp-cstrs-homogeneous (cstrs)
   "Check if constraints CSTRS are all homogeneously negated or non-negated.
 Return `pos' if they are all positive, `neg' if they are all
-negated or nil othewise."
+negated or nil otherwise."
   (cl-loop
    for cstr in cstrs
    unless (comp-cstr-neg cstr)
index 0522b31f5777edf2974546f5d5efb3b598cedfa5..b95f11eab64bad7eeaf6343e6bb7ccc4a099fa2f 100644 (file)
@@ -79,7 +79,7 @@ of the alist has the form (KEY FUNCTION HELP), where KEY is a character;
 FUNCTION is a function of one argument (an object from LIST); and HELP
 is a string.  When the user presses KEY, FUNCTION is called; if it
 returns non-nil, the object is considered to have been \"acted upon\",
-and `map-y-or-n-p' proceeeds to the next object from LIST.  If
+and `map-y-or-n-p' proceeds to the next object from LIST.  If
 FUNCTION returns nil, the prompt is re-issued for the same object: this
 comes in handy if FUNCTION produces some display that will allow the
 user to make an intelligent decision whether the object in question
index 73202016ba74e9b8480c48909e0dabf5ad8cfd09..e0fda41f8ed25cdfd549e6d679088f9f94427de2 100644 (file)
@@ -2271,7 +2271,7 @@ first element is the certificate key file name, and the second
 element is the certificate file name itself, or t, which means
 that `auth-source' will be queried for the key and the
 certificate.  Authenticating using a TLS client certificate is
-also refered to as \"CertFP\" (Certificate Fingerprint)
+also referred to as \"CertFP\" (Certificate Fingerprint)
 authentication by various IRC networks.
 
 Example usage:
index f3e3590645b1eca7c5e93284b0771a29a420f7de..feb75a198e2edb2be8985cfd77394206bd5389e5 100644 (file)
@@ -145,7 +145,7 @@ and HANKAKU belongs to `japanese-jisx0201-kana'.")
     (?p . ?p) (?q . ?q) (?r . ?r) (?s . ?s) (?t . ?t)
     (?u . ?u) (?v . ?v) (?w . ?w) (?x . ?x) (?y . ?y) (?z . ?z))
   "Japanese JISX0208 alpha numeric character table.
-Each element is of the form (ALPHA-NUMERIC . ASCII), where ALPHA-NUMERIC
+Each element is of the form (ALPHANUMERIC . ASCII), where ALPHANUMERIC
 belongs to `japanese-jisx0208', ASCII belongs to `ascii'.")
 
 ;; Put properties 'jisx0208 and 'ascii to each Japanese alpha numeric
index f33cbaf1126e6e401f4a130d20f1c4c7d66cd101..0f42af0911b158f8057f24ee682074d0eb0fbd79 100644 (file)
@@ -86,7 +86,7 @@ You can specify here:
 (defcustom dictionary-port
   2628
   "The port of the dictionary server.
-This port is propably always 2628 so there should be no need to modify it."
+This port is probably always 2628 so there should be no need to modify it."
   :group 'dictionary
   :set #'dictionary-set-server-var
   :type 'number
index 334e82114fcc0626a874f0005d4dc228f207126b..f1bc25db7f7f8bfc86f70e014b0652a41d9bcfb6 100644 (file)
   ;; prevent a repeat invocation.  See elisp/lispref page "Search-based
   ;; Fontification".
   ;;
-  ;; This function gives invalid GAWK namepace separators (::)
+  ;; This function gives invalid GAWK namespace separators (::)
   ;; font-lock-warning-face.  "Invalid" here means there are spaces, etc.,
   ;; around a separator, or there are more than one of them in an identifier.
   ;; Invalid separators inside function declaration parentheses are handled
index c305cae754e20deaf878b6463065f6275dfb987b..77da98f62620b641391aa679d5467c8cd6eac007 100644 (file)
@@ -7422,7 +7422,7 @@ multi-line strings (but not C++, for example)."
                     t)
                    (save-excursion
                      (goto-char (match-end 1))
-                     (if (c-in-literal) ; a psuedo closer.
+                     (if (c-in-literal) ; a pseudo closer.
                          t
                        (setq saved-match-data (match-data))
                        (setq found t)
index 542f8ad0b1b6050bdd1c458410e0afa4d8d10ae4..ef36c1f087757446a68818b39d0d9a7449e44442 100644 (file)
@@ -1452,7 +1452,7 @@ Elisp eldoc behaviour.  Consider variable docstrings and function
 signatures only, in this order.  If none applies, returns nil.
 Changes to `eldoc-documentation-functions' and
 `eldoc-documentation-strategy' are _not_ reflected here.  As such
-it is preferrable to use ElDoc's interfaces directly.")
+it is preferable to use ElDoc's interfaces directly.")
 
 (make-obsolete 'elisp-eldoc-documentation-function
                "use ElDoc's interfaces instead." "28.1")
index 4a1da62c7e99fa7276a3fa7518cf387abb44b2f9..a2f5d7286acb05dd4dfa4197110d1302e2648eea 100644 (file)
@@ -682,7 +682,7 @@ that form should be displayed.")
 (defconst hif-valid-token-list (mapcar 'cdr hif-token-alist))
 
 (defconst hif-token-regexp
-  ;; The ordering of regexp grouping is crutial to `hif-strtok'
+  ;; The ordering of regexp grouping is crucial to `hif-strtok'
   (concat
    ;; hex/binary:
    "\\([+-]?0[xXbB]\\([[:xdigit:]']+\\)?\\.?\\([[:xdigit:]']+\\)?\\([pP]\\([+-]?[0-9]+\\)\\)?"
index 5eeac8af3b85d720ba0ae0caf211a8fdea94402a..3fe67fabf19f3658f58326ecc6ef593e516c5792 100644 (file)
@@ -4700,7 +4700,7 @@ Usage:
     `vhdl-project-alist'.
 
 
-  SPECIAL MENUES:
+  SPECIAL MENUS:
     As an alternative to the speedbar, an index menu can be added (set
     option `vhdl-index-menu' to non-nil) or made accessible as a mouse menu
     (e.g. add \"(global-set-key [S-down-mouse-3] \\='imenu)\" to your start-up
index 5cece1aa3c60bbd5a24c6d448cb54f580dc9bf01..d5671ce14f9d303e4e6f7104ec39afd929309428 100644 (file)
@@ -113,7 +113,7 @@ page-dashes         Change double dashes in page field to single dash
 whitespace          Delete whitespace at the beginning and end of fields.
 inherit-booktitle   If entry contains a crossref field and the booktitle
                       field is empty, set the booktitle field to the content
-                      of the title field of the crossreferenced entry.
+                      of the title field of the cross-referenced entry.
 realign             Realign entries, so that field texts and perhaps equal
                       signs (depending on the value of
                       `bibtex-align-at-equal-sign') begin in the same column.
@@ -1228,9 +1228,9 @@ See `bibtex-generate-autokey' for details."
   :type 'integer)
 
 (defcustom bibtex-autokey-use-crossref t
-  "If non-nil use fields from crossreferenced entry if necessary.
+  "If non-nil use fields from cross-referenced entry if necessary.
 If this variable is non-nil and some field has no entry, but a
-valid crossref entry, the field from the crossreferenced entry is used.
+valid crossref entry, the field from the cross-referenced entry is used.
 See `bibtex-generate-autokey' for details."
   :group 'bibtex-autokey
   :type 'boolean)
@@ -2975,7 +2975,7 @@ The year part:
     `bibtex-autokey-year-length' digits (useful values are 2 and 4).
  2. If both the year and date fields are absent, but the entry has a
     valid crossref field and `bibtex-autokey-use-crossref' is
-    non-nil, use the date or year field of the crossreferenced entry
+    non-nil, use the date or year field of the cross-referenced entry
     instead.
 
 The title part
index f747c409431bf9cb538857ed1a948f530a80f36c..ef970bb6c96e752bb1f572b3ca02044d11748f9a 100644 (file)
@@ -170,7 +170,7 @@ placement bugs in old versions of Emacs."
 
 (defcustom windmove-allow-all-windows nil
   "Whether the windmove commands are allowed to target all type of windows.
-If this variable is set to non-nil, all windmove commmands will
+If this variable is set to non-nil, all windmove commands will
 ignore the `no-other-window' parameter applied by `display-buffer-alist'
 or `set-window-parameter'."
   :type 'boolean
index 5126439fd66b62dff4adc3e9a63b0d408869d51a..c39fce21c7032a1fb3e7ff97458ed3da09133b5a 100644 (file)
--- a/src/fns.c
+++ b/src/fns.c
@@ -1174,7 +1174,7 @@ string_make_multibyte (Lisp_Object string)
 
 
 /* Convert STRING (if unibyte) to a multibyte string without changing
-   the number of characters.  Characters 0200 trough 0237 are
+   the number of characters.  Characters 0200 through 0237 are
    converted to eight-bit characters. */
 
 Lisp_Object
index ab5dcc3664cec0bd0e2e9afc8563e525d175074f..f95566818af6527a0d698250d549a9bac6efa640 100644 (file)
@@ -729,7 +729,7 @@ adjust_frame_size (struct frame *f, int new_text_width, int new_text_height,
          && (f->new_width >= 0 || f->new_height >= 0))
        /* For implied resizes with inhibit 2 (external menu and tool
           bar) pick up any new sizes the display engine has not
-          processed yet.  Otherwsie, we would request the old sizes
+          processed yet.  Otherwise, we would request the old sizes
           which will make this request appear as a request to set new
           sizes and have the WM react accordingly which is not TRT.
 
index bcd45eb45142c371d171b4ec9e1e683cfff37ca2..206c7baa2f87355e8bfec431d1f94c878542f7fd 100644 (file)
@@ -10039,7 +10039,7 @@ svg_load_image (struct frame *f, struct image *img, char *contents,
 #if LIBRSVG_CHECK_VERSION (2, 46, 0)
   RsvgRectangle zero_rect, viewbox, out_logical_rect;
 
-  /* Try the instrinsic dimensions first.  */
+  /* Try the intrinsic dimensions first.  */
   gboolean has_width, has_height, has_viewbox;
   RsvgLength iwidth, iheight;
   double dpi = FRAME_DISPLAY_INFO (f)->resx;
@@ -10074,7 +10074,7 @@ svg_load_image (struct frame *f, struct image *img, char *contents,
     }
   else
     {
-      /* We haven't found a useable set of sizes, so try working out
+      /* We haven't found a usable set of sizes, so try working out
          the visible area.  */
       rsvg_handle_get_geometry_for_layer (rsvg_handle, NULL,
                                           &zero_rect, &viewbox,
index 4bdc67c10b5dc3708f2ed0e4f619bf23e63f5aa7..8d88f7bd3de3a76b9cc578372744642fe83af5e1 100644 (file)
@@ -8369,14 +8369,14 @@ not_in_argv (NSString *arg)
 
 
 #ifdef NS_IMPL_COCOA
-  /* We have to set the accesibility subroles and/or the collection
+  /* We have to set the accessibility subroles and/or the collection
      behaviors early otherwise child windows may not go fullscreen as
      expected later.  */
 
 #if MAC_OS_X_VERSION_MIN_REQUIRED < 101000
   if ([child respondsToSelector:@selector(setAccessibilitySubrole:)])
 #endif
-    /* Set the accessibilty subroles.  */
+    /* Set the accessibility subroles.  */
     if (parentFrame)
       [self setAccessibilitySubrole:NSAccessibilityFloatingWindowSubrole];
     else
index 71bdd74890a5b619fd5125ace5dacd4f170eabb0..c0f90bc2d47aca1017d5ebf7660621b5da8df692 100644 (file)
@@ -95,7 +95,7 @@
       ;; From fedora.org: 2605:bc80:3010:600:dead:beef:cafe:fed9
       ;; 5004 ~~> Version Status (OK) NOOP Addr-Type (4 -> IPv6)
       (socks-filter proc "\5\0\0\4\x26\x05\xbc\x80\x30\x10\x00\x60")
-      (ert-info ("State still waiting and response emtpy")
+      (ert-info ("State still waiting and response empty")
         (should (eq (process-get proc 'socks-state) socks-state-waiting))
         (should-not (process-get proc 'socks-response)))
       (ert-info ("Scratch field holds partial payload of pending msg")
index 8af4625fff3684f36dcd7bed43e176020b649b98..bb3d4871a91341c17f3881b45bd414eafc4bb66b 100644 (file)
@@ -17,7 +17,7 @@ For each of the HERE documents, the following checks will done:
 
 =item *
 
-All occurrences of the string "look-here" are fontified correcty.
+All occurrences of the string "look-here" are fontified correctly.
 Note that we deliberately test the face, not the syntax property:
 Users won't care for the syntax property, but they see the face.
 Different implementations with different syntax properties have been
index a4c7f447b591adb37c9c44f44d4d1d591c52b876..fcc2c75709164a67c4cbbf0250c56a095273a1ed 100644 (file)
@@ -54,7 +54,7 @@
              (beg (line-beginning-position))
              (end (line-end-position))
              (fill-prefix (make-string (- pos beg) ?\s))
-             ;; `fill-column' is too small to accomodate the current line
+             ;; `fill-column' is too small to accommodate the current line
              (fill-column (- end beg 10)))
         (fill-region-as-paragraph beg end nil nil pos))
       (should (equal (buffer-string) string)))))
@@ -69,7 +69,7 @@
              (beg (line-beginning-position))
              (end (line-end-position))
              (fill-prefix (make-string (- pos beg) ?\s))
-             ;; `fill-column' is too small to accomodate the current line
+             ;; `fill-column' is too small to accommodate the current line
              (fill-column (- end beg 10)))
         (fill-region-as-paragraph beg end nil nil pos))
       (should (equal