]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typos
authorRobert Pluim <rpluim@gmail.com>
Mon, 24 Jun 2024 09:19:28 +0000 (11:19 +0200)
committerEshel Yaron <me@eshelyaron.com>
Wed, 26 Jun 2024 13:31:01 +0000 (15:31 +0200)
* ChangeLog.3: It's "its", not "it's", for the possessive.
* ChangeLog.4: And here.

(cherry picked from commit 164f75822b2055606d8f36453dc9a874296983ec)

ChangeLog.3
ChangeLog.4

index 8d227d8a47ddc86f5db45e4fdf3b905d8666adbf..80ea900477e403a02681a9ebc27b1ebc21cf3e7b 100644 (file)
        ([EmacsView viewDidResize:]):Don't explicitly release surfaces.
        ([EmacsView initFrameFromEmacs:]): Move the layer code to after the
        NSWindow has been created as creating the layer now relies on some of
-       it's properties.
+       its properties.
        ([EmacsView makeBackingLayer]): New function.
        ([EmacsView lockFocus]):
        ([EmacsView focusOnDrawingBuffer]): Rename to lockFocus.
 
        Change default offset of CC Mode syntactic symbol inlambda to 0
 
-       It's previous default was c-lineup-inexpr-block.  This change is mainly to
+       Its previous default was c-lineup-inexpr-block.  This change is mainly to
        prevent excessive indentation of the innards of C++ lambda functions.
 
        * lisp/progmodes/cc-vars.el (c-offsets-alist): Amend the offset for inlambda
        d6aa55e Avoid segfaults in replace-buffer-contents with large buffers
        d22b8d1 Adjust for scaling for mode-line popup menus (Bug#31880)
        3d2e3dc Change name of `seqp' argument (Bug#26411)
-       40e1db8 Change index of ";" to better reflect it's usage (Bug#31623)
+       40e1db8 Change index of ";" to better reflect its usage (Bug#31623)
        d289e7e Fix bug of 'mouse-drag-and-drop-region' to detect edges of re...
        e292c09 Fix #'fun handling inside `labels' (Bug#31792)
 
 
 2018-06-20  Noam Postavsky  <npostavs@gmail.com>
 
-       Change index of ";" to better reflect it's usage (Bug#31623)
+       Change index of ";" to better reflect its usage (Bug#31623)
 
        * doc/lispref/objects.texi (Comments): "; for commenting" fits better
        with the following text about how a semicolon begins a comment.  Also
        Add seq-random-elt to seq.el
 
        * lisp/emacs-lisp/seq.el (seq-random-elt): Add function to return a
-         random element from it's sequence parameter.
+         random element from its sequence parameter.
 
        * test/lisp/emacs-lisp/seq-tests.el (test-seq-random-elt-take-all
          test-seq-random-elt-return-nil): Test the new function
        Make ‘delete-trailing-whitespace’ delete spaces after form feed
 
        * lisp/simple.el (delete-trailing-whitespace): Treat form fead as
-       a non-whitespace character (regardless of whether its character syntax
+       a non-whitespace character (regardless of whether its character syntax
        is whitespace) and delete any whitespace following it instead of leaving
        lines with form feeds completely unchanged.  I.e. a line like "\f " will
        now became "\f".
index da5833e634d5a17dcc09bba2c16d629796a8e47b..8e5682432c76c8bf1183281936e08236107db827 100644 (file)
        changes, make hint overlays span one character (instead of being
        length 0).  Give the overlays an "evaporate" property.
 
-       Given an inlay hints at position POS, its attached to [POS, POS+1] if
-       it's kind=1 (usually type hints) and [POS-1, POS] otherwise.  For
+       Given an inlay hints at position POS, it's attached to [POS, POS+1] if
+       its kind=1 (usually type hints) and [POS-1, POS] otherwise.  For
        kind=1 hints, the 'cursor position of the first such overlay is also
        tweaked, so that's it's less awkward to edit around it.
 
        Not the subject of it, but mentioned in bug#61893.
 
        * lisp/progmodes/c-ts-mode.el (c-ts-mode--anchor-prev-sibling): Skip
-       the sibling if it doesn't start on it's own line.
+       the sibling if it doesn't start on its own line.
        * test/lisp/progmodes/c-ts-mode-resources/indent.erts: New test.
 
 2023-03-05  Kyle Meyer  <kyle@kyleam.com>
        (treesit-major-mode-setup): Instead of binding
        font-lock-fontify-region-function, now bind to
        font-lock-fontify-syntactically-function.  And we can let font-lock do
-       it's thing.
+       its thing.
 
 2022-10-31  Yuan Fu  <casouri@gmail.com>
 
        Fix Tramp completion on MS Windows
 
        * lisp/net/tramp.el (tramp-build-remote-file-name-spec-regexp):
-       Revert previous change, it's too complicate.
+       Revert previous change, it's too complicated.
        (tramp-build-completion-file-name-regexp):
        Use `tramp-prefix-format' instead of `tramp-prefix-regexp'.  (Bug#558133)
 
 
        * src/xselect.c (lisp_data_to_selection_data): Assume an empty
        vector represents INTEGER data, instead of blindly trying to
-       aref it's first element.
+       aref its first element.
 
 2022-09-04  Jim Porter  <jporterbugs@gmail.com>
 
 
        * doc/misc/gnus.texi (The problem of spam): Don't explain what
        spam is; there is no need for that in 2022.  Don't explain
-       limitations of obsolete software TMDA; it's website has stopped
+       limitations of obsolete software TMDA; its website has stopped
        working but seems to have been updated last in 2007.
        (Thwarting Email Spam, Anti-Spam Basics)
        (Spam Package Configuration Examples): Prefer "spam" to "UCE".
        Correct indentation of opening brace in xdisp.c, which isn't at start of defun
 
        * xdisp.c (calc_pixel_width_or_height): indent the opening brace of a
-       substatement correctly.  It's previous position, in column 0, caused
+       substatement correctly.  Its previous position, in column 0, caused
        indentation errors in C Mode.
 
 2022-05-17  Po Lu  <luangruo@yahoo.com>