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

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

[nongnu] elpa/with-editor 229e80f 038/140: manual: regenerate using upda


From: Jonas Bernoulli
Subject: [nongnu] elpa/with-editor 229e80f 038/140: manual: regenerate using updated Org and Ox-Texinfo+
Date: Fri, 6 Aug 2021 12:51:15 -0400 (EDT)

branch: elpa/with-editor
commit 229e80f9edddef863f2e35d32ce835e9336f94ec
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    manual: regenerate using updated Org and Ox-Texinfo+
---
 with-editor.org  | 45 ++++++++++++++++++++++++-----------------
 with-editor.texi | 61 ++++++++++++++++++++++++++++++++------------------------
 2 files changed, 62 insertions(+), 44 deletions(-)

diff --git a/with-editor.org b/with-editor.org
index 6c2d844..8fde5bb 100644
--- a/with-editor.org
+++ b/with-editor.org
@@ -1,7 +1,7 @@
 #+TITLE: With-Editor User Manual
 #+AUTHOR: Jonas Bernoulli
 #+EMAIL: jonas@bernoul.li
-#+DATE: 2015-2016
+#+DATE: 2015-2017
 #+LANGUAGE: en
 
 #+TEXINFO_DIR_CATEGORY: Emacs
@@ -12,17 +12,10 @@
 #+TEXINFO_CLASS: info+
 #+OPTIONS: H:4 num:nil toc:2
 
-* Copying
-:PROPERTIES:
-:COPYING:    t
-:END:
-
-#+BEGIN_EXPORT texinfo
-@ifnottex
-The library @code{with-editor} makes it easy to use the Emacsclient as
-the @code{$EDITOR} of child processes, making sure they know how to call
-home.  For remote processes a substitute is provided, which communicates
-with Emacs on standard output instead of using a socket as the Emacsclient
+The library ~with-editor~ makes it easy to use the Emacsclient as the
+~$EDITOR~ of child processes, making sure they know how to call home.
+For remote processes a substitute is provided, which communicates with
+Emacs on standard output instead of using a socket as the Emacsclient
 does.
 
 This library was written because Magit has to be able to do the above
@@ -33,10 +26,9 @@ Because other packages can benefit from such functionality, 
this
 library is made available as a separate package.  It also defines some
 additional functionality which makes it useful even for end-users, who
 don't use Magit or another package which uses it internally.
-@end ifnottex
 
-@quotation
-Copyright (C) 2015-2016 Jonas Bernoulli <jonas@@bernoul.li>
+#+BEGIN_QUOTE
+Copyright (C) 2015-2017 Jonas Bernoulli <jonas@bernoul.li>
 
 You can redistribute this document and/or modify it under the terms
 of the GNU General Public License as published by the Free Software
@@ -47,8 +39,7 @@ This document is distributed in the hope that it will be 
useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
-@end quotation
-#+END_EXPORT
+#+END_QUOTE
 
 * Using the With-Editor package
 
@@ -231,7 +222,7 @@ Some variants of this function exist; these two forms are 
equivalent:
 
 * Using With-Editor as a library
 
-This section describes how to use the =with-editor= library /outside/ of
+This section describes how to use the ~with-editor~ library /outside/ of
 Magit to teach another package how to have its child processes call
 home, just like Magit does.  You don't need to know any of this just
 to create commits using Magit.  You can also ignore this if you use
@@ -283,3 +274,21 @@ Emacs and what is the output of ~M-x with-editor-debug 
RET~.
 # Local Variables:
 # eval: (require 'ox-texinfo+ nil t)
 # End:
+* Copying
+:PROPERTIES:
+:COPYING:    t
+:END:
+
+#+BEGIN_QUOTE
+Copyright (C) 2015-2017 Jonas Bernoulli <jonas@bernoul.li>
+
+You can redistribute this document and/or modify it under the terms
+of the GNU General Public License as published by the Free Software
+Foundation, either version 3 of the License, or (at your option) any
+later version.
+
+This document is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+#+END_QUOTE
diff --git a/with-editor.texi b/with-editor.texi
index 791feeb..20854ff 100644
--- a/with-editor.texi
+++ b/with-editor.texi
@@ -1,31 +1,14 @@
 \input texinfo    @c -*- texinfo -*-
 @c %**start of header
-@setfilename ./with-editor.info
+@setfilename with-editor.info
 @settitle With-Editor User Manual
 @documentencoding UTF-8
 @documentlanguage en
 @c %**end of header
 
 @copying
-@ifnottex
-The library @code{with-editor} makes it easy to use the Emacsclient as
-the @code{$EDITOR} of child processes, making sure they know how to call
-home.  For remote processes a substitute is provided, which communicates
-with Emacs on standard output instead of using a socket as the Emacsclient
-does.
-
-This library was written because Magit has to be able to do the above
-to allow the user to edit commit messages gracefully and to edit
-rebase sequences, which wouldn't be possible at all otherwise.
-
-Because other packages can benefit from such functionality, this
-library is made available as a separate package.  It also defines some
-additional functionality which makes it useful even for end-users, who
-don't use Magit or another package which uses it internally.
-@end ifnottex
-
 @quotation
-Copyright (C) 2015-2016 Jonas Bernoulli <jonas@@bernoul.li>
+Copyright (C) 2015-2017 Jonas Bernoulli <jonas@@bernoul.li>
 
 You can redistribute this document and/or modify it under the terms
 of the GNU General Public License as published by the Free Software
@@ -59,7 +42,35 @@ General Public License for more details.
 @ifnottex
 @node Top
 @top With-Editor User Manual
-@insertcopying
+
+The library @code{with-editor} makes it easy to use the Emacsclient as the
+@code{$EDITOR} of child processes, making sure they know how to call home.
+For remote processes a substitute is provided, which communicates with
+Emacs on standard output instead of using a socket as the Emacsclient
+does.
+
+This library was written because Magit has to be able to do the above
+to allow the user to edit commit messages gracefully and to edit
+rebase sequences, which wouldn't be possible at all otherwise.
+
+Because other packages can benefit from such functionality, this
+library is made available as a separate package.  It also defines some
+additional functionality which makes it useful even for end-users, who
+don't use Magit or another package which uses it internally.
+
+@quotation
+Copyright (C) 2015-2017 Jonas Bernoulli <jonas@@bernoul.li>
+
+You can redistribute this document and/or modify it under the terms
+of the GNU General Public License as published by the Free Software
+Foundation, either version 3 of the License, or (at your option) any
+later version.
+
+This document is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+General Public License for more details.
+@end quotation
 @end ifnottex
 
 @menu
@@ -77,8 +88,6 @@ Using the With-Editor package
 @end detailmenu
 @end menu
 
-
-
 @node Using the With-Editor package
 @chapter Using the With-Editor package
 
@@ -88,7 +97,7 @@ and features which are useful by themselves, even if you 
don't use
 Magit.
 
 For information about using this library in you own package, see
-@ref{Using With-Editor as a library,Using With-Editor as a library}.
+@ref{Using With-Editor as a library}.
 
 @menu
 * Configuring With-Editor::
@@ -118,7 +127,7 @@ instance.
 
 You should @strong{not} customize this option permanently.  If you have to do
 it, then you should consider that a temporary kludge and inform the
-Magit maintainer as described in @ref{Debugging,Debugging}.
+Magit maintainer as described in @ref{Debugging}.
 
 If With-Editor fails to find a suitable @code{emacsclient} on you system,
 then this should be fixed for all users at once, by teaching
@@ -283,14 +292,14 @@ This command is like @code{with-editor-export-editor} but 
exports
 @node Using With-Editor as a library
 @chapter Using With-Editor as a library
 
-This section describes how to use the @verb{~with-editor~} library 
@emph{outside} of
+This section describes how to use the @code{with-editor} library 
@emph{outside} of
 Magit to teach another package how to have its child processes call
 home, just like Magit does.  You don't need to know any of this just
 to create commits using Magit.  You can also ignore this if you use
 @code{with-editor} outside of Magit, but only as an end-user.
 
 For information about interactive use and options that affect both
-interactive and non-interactive use, see @ref{Using the With-Editor 
package,Using the With-Editor package}.
+interactive and non-interactive use, see @ref{Using the With-Editor package}.
 
 @defmac with-editor &rest body
 



reply via email to

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