branch: externals/m-buffer
commit e80fd6cdaa355242f37982e6510dc8ae1eb4e33d
Author: Phillip Lord <[email protected]>
Commit: Phillip Lord <[email protected]>
Documentation updates.
---
m-buffer-macro.el | 5 ++---
m-buffer.el | 2 +-
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/m-buffer-macro.el b/m-buffer-macro.el
index 711c81b298..9ad23a9f49 100644
--- a/m-buffer-macro.el
+++ b/m-buffer-macro.el
@@ -1,4 +1,4 @@
-;;; m-buffer-macro.el --- Stateless point functions -*- lexical-binding: t -*-
+;;; m-buffer-macro.el --- Create and dispose of markers -*- lexical-binding: t
-*-
;;; Header:
@@ -21,14 +21,13 @@
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
-;; #+begin_src emacs-lisp
-
;;; Commentary:
;; Macro support for markers with post-cleanup.
;;; Code:
+;; #+begin_src emacs-lisp
(defmacro m-buffer-with-markers (varlist &rest body)
"Bind variables after VARLIST then eval BODY.
All variables should contain markers or collections of markers.
diff --git a/m-buffer.el b/m-buffer.el
index c6c93d09ae..62acd4bca3 100644
--- a/m-buffer.el
+++ b/m-buffer.el
@@ -38,7 +38,7 @@
;; data or so forth. Generally, markers are returned rather than point
;; locations, so that it is possible for example, to search for regexp
;; matches, and then replace them all without the early replacement
-;; invalidating the location of the later ones.
+;; invalidating the location of the later ones.
;; Other files provide something similar: stateless alternatives to existing
;; emacs functions. `m-buffer-macro' provides macros to operate in the context
of