diff options
author | Charles A. Roelli <charles@aurox.ch> | 2017-12-27 15:53:34 +0100 |
---|---|---|
committer | Charles A. Roelli <charles@aurox.ch> | 2017-12-27 15:53:34 +0100 |
commit | a31ab5ffb57d9220da782a24f124e0d8f21f9519 (patch) | |
tree | 90d362b4def79c7eff35330dd1b763b824305288 | |
parent | 2ebc8dc3b6a46a0dff928dd43a2530e9fdb35b20 (diff) | |
download | emacs-a31ab5ffb57d9220da782a24f124e0d8f21f9519.tar.gz |
* lisp/subr.el (with-silent-modifications): Doc fixes.
-rw-r--r-- | lisp/subr.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index 64521711b7a..778b6449fc2 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -3471,8 +3471,8 @@ See also `with-temp-file' and `with-output-to-string'." (defmacro with-silent-modifications (&rest body) "Execute BODY, pretending it does not modify the buffer. -This macro is Typically used around modifications of -text-properties which do not really affect the buffer's content. +This macro is typically used around modifications of +text properties which do not really affect the buffer's content. If BODY performs real modifications to the buffer's text, other than cosmetic ones, undo data may become corrupted. |