emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals-release/org 23b9316ef9 1/2: Backport commit a79966156 f


From: ELPA Syncer
Subject: [elpa] externals-release/org 23b9316ef9 1/2: Backport commit a79966156 from Emacs
Date: Thu, 25 Jul 2024 09:58:47 -0400 (EDT)

branch: externals-release/org
commit 23b9316ef913389111682687b0053a97862e9fd2
Author: Stefan Kangas <stefankangas@gmail.com>
Commit: Kyle Meyer <kyle@kyleam.com>

    Backport commit a79966156 from Emacs
    
    Standardize possessive apostrophe usage in manuals, docs, and comments
    a79966156633ae1e49e3fef17ff7212c8f35a26f
    Stefan Kangas
    Thu Jul 25 03:35:18 2024 +0200
---
 doc/org-manual.org  | 4 ++--
 etc/ORG-NEWS        | 8 ++++----
 lisp/ob-sql.el      | 2 +-
 lisp/ol.el          | 2 +-
 lisp/org-persist.el | 2 +-
 lisp/org-src.el     | 2 +-
 lisp/ox-latex.el    | 2 +-
 7 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/doc/org-manual.org b/doc/org-manual.org
index 1b36fae60f..aecc4b304b 100644
--- a/doc/org-manual.org
+++ b/doc/org-manual.org
@@ -3359,7 +3359,7 @@ Here is the full set of built-in link types:
 
 - =gnus=, =rmail=, =mhe= ::
 
-  Link to messages or folders from a given Emacs' MUA.
+  Link to messages or folders from a given Emacs MUA.
 
 - =help= ::
 
@@ -23201,7 +23201,7 @@ than 30 stars.  This is a hard-coded limitation of 
~lmax~ in
 2003, not the beginning of time.
 
 [fn:29] On computers using macOS, idleness is based on actual user
-idleness, not just Emacs' idle time.  For X11, you can install a
+idleness, not just Emacs's idle time.  For X11, you can install a
 utility program =x11idle.c=, available in the =org-contrib/=
 repository, or install the xprintidle package and set it to the
 variable ~org-clock-x11idle-program-name~ if you are running Debian,
diff --git a/etc/ORG-NEWS b/etc/ORG-NEWS
index c5d1e87203..22212fa6d0 100644
--- a/etc/ORG-NEWS
+++ b/etc/ORG-NEWS
@@ -693,8 +693,8 @@ Org-Org (=ox-org=) export.  The default value is ~t~.
 
 *** New option ~org-babel-comint-fallback-regexp-threshold~
 
-Org babel is often using Emacs' interactive REPL feature to implement
-:session functionality in code blocks. However, Emacs' REPLs use
+Org babel is often using Emacs's interactive REPL feature to implement
+:session functionality in code blocks.  However, Emacs's REPLs use
 heuristics to detect which lines in the REPL buffer correspond to
 output and which lines are user prompts.
 
@@ -1990,7 +1990,7 @@ When ~org-latex-src-block-backend~ is set to ~engraved~,
 =engrave-faces-latex= from 
[[http://elpa.gnu.org/packages/engrave-faces.html][engrave-faces]] is used to 
transcode source
 blocks to LaTeX. This requires the =fvextra=, =float=, and (by
 default, but not necessarily) =tcolorbox= LaTeX packages be
-installed. It uses Emacs' font-lock information, and so tends to
+installed. It uses Emacs's font-lock information, and so tends to
 produce results superior to Minted or Listings.
 *** Support for =#+include=-ing URLs
 
@@ -8181,7 +8181,7 @@ that Calc formulas can operate on them.
 
 **** org-ctags.el (Paul Sexton)
 
-     Targets like =<<my target>>= can now be found by Emacs' etag
+     Targets like =<<my target>>= can now be found by Emacs's etag
      functionality, and Org-mode links can be used to link to
      etags, also in non-Org-mode files.  For details, see the file
      /org-ctags.el/.
diff --git a/lisp/ob-sql.el b/lisp/ob-sql.el
index dc067a4171..5ece354ea6 100644
--- a/lisp/ob-sql.el
+++ b/lisp/ob-sql.el
@@ -208,7 +208,7 @@ Pass nil to omit that arg."
   "Convert FILE to OS standard file name.
 If in Cygwin environment, uses Cygwin specific function to
 convert the file name.  In a Windows-NT environment, do nothing.
-Otherwise, use Emacs' standard conversion function."
+Otherwise, use Emacs's standard conversion function."
   (cond ((fboundp 'cygwin-convert-file-name-to-windows)
         (format "%S" (cygwin-convert-file-name-to-windows file)))
        ((string= "windows-nt" system-type) file)
diff --git a/lisp/ol.el b/lisp/ol.el
index 8a556c7b97..a16f27c2e3 100644
--- a/lisp/ol.el
+++ b/lisp/ol.el
@@ -542,7 +542,7 @@ original string length.")
 (defvar-local org-target-link-regexps nil
   "List of regular expressions matching radio targets in plain text.
 This list is non-nil, when a single regexp would be too long to match
-all the possible targets, exceeding Emacs' regexp length limit.")
+all the possible targets, exceeding Emacs's regexp length limit.")
 
 (defvar org-link-types-re nil
   "Matches a link that has a url-like prefix like \"http:\".")
diff --git a/lisp/org-persist.el b/lisp/org-persist.el
index 5cc572a78c..8b0d9b110f 100644
--- a/lisp/org-persist.el
+++ b/lisp/org-persist.el
@@ -459,7 +459,7 @@ FORMAT and ARGS are passed to `message'."
   ;; With all this in mind, we ensure `write-region-inhibit-fsync' is
   ;; set.
   ;;
-  ;; To read more about this, see the comments in Emacs' fileio.c, in
+  ;; To read more about this, see the comments in Emacs's fileio.c, in
   ;; particular the large comment block in init_fileio.
   (let ((write-region-inhibit-fsync t)
         ;; We set UTF-8 here and in `org-persist--read-elisp-file'
diff --git a/lisp/org-src.el b/lisp/org-src.el
index 0a9062f053..229bf62e1c 100644
--- a/lisp/org-src.el
+++ b/lisp/org-src.el
@@ -663,7 +663,7 @@ Leave point in edit buffer."
 (defvar org-src-fontify-natively) ; Defined in org.el
 (defun org-src-font-lock-fontify-block (lang start end)
   "Fontify code block between START and END using LANG's syntax.
-This function is called by Emacs' automatic fontification, as long
+This function is called by Emacs's automatic fontification, as long
 as `org-src-fontify-natively' is non-nil."
   (let ((modified (buffer-modified-p)) native-tab-width)
     (remove-text-properties start end '(face nil))
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index fcb0e20dc7..79df1fe119 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -993,7 +993,7 @@ The most comprehensive option can be set with,
 
 which causes source code to be run through
 `engrave-faces-latex-buffer', which generates colorings using
-Emacs' font-lock information.  This requires the Emacs package
+Emacs's font-lock information.  This requires the Emacs package
 engrave-faces (available from GNU ELPA), and the LaTeX package
 fvextra be installed.
 



reply via email to

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