]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor copyedits of doc of 'with-silent-modifications'
authorEli Zaretskii <eliz@gnu.org>
Sat, 19 Sep 2020 08:30:57 +0000 (11:30 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sat, 19 Sep 2020 08:30:57 +0000 (11:30 +0300)
* doc/lispref/text.texi (Changing Properties):
* doc/lispref/buffers.texi (Buffer Modification): Improve
documentation and indexing of 'with-silent-modifications'.

doc/lispref/buffers.texi
doc/lispref/text.texi

index 33528fc7fec863a9e35e772be71c03f346ce7989..28603436284eab48613217c431b5ce873c4b31ad 100644 (file)
@@ -596,8 +596,8 @@ and features that react to buffer modifications, use the
 Execute @var{body} pretending it does not modify the buffer.  This
 includes checking whether the buffer's file is locked (@pxref{File
 Locks}), running buffer modification hooks (@pxref{Change Hooks}),
-etc.  Note that if @var{body} actually modifies the buffer text, its
-undo data may become corrupted.
+etc.  Note that if @var{body} actually modifies the buffer text (as
+opposed to its text properties), its undo data may become corrupted.
 @end defmac
 
 @node Modification Time
index 5d83e7bd6cc313a6a3155a450c777b0a063c5195..c4e92bdcedbcccc0ae1cc32d3f7e88b6f806cf66 100644 (file)
@@ -3069,7 +3069,7 @@ construct each part with @code{propertize} and then combine them with
 @code{buffer-substring-no-properties}, which copies text from the
 buffer but does not copy its properties.
 
-@findex with-silent-modifications
+@findex with-silent-modifications, and changes in text properties
   If you wish to add text properties to a buffer or remove them
 without marking the buffer as modified, you can wrap the calls above
 in the @code{with-silent-modifications} macro.  @xref{Buffer