diff options
author | Taylor R Campbell <campbell@mumble.net> | 2011-04-10 00:59:17 +0000 |
---|---|---|
committer | Taylor R Campbell <campbell@mumble.net> | 2011-04-10 00:59:17 +0000 |
commit | ba0de55ad6fbc8501cd713dc751046e773296c16 (patch) | |
tree | 419484e46cc7a1634a82c12f9e4cd423d8cdf1ee | |
parent | 73e664e0fe2e7b7fa8b80f6833a2a27afa897b1e (diff) |
Add brief docstring to `paredit-check-region-state'.
Ignore-this: 3f246298c4207e54bdecd05647c0c8fd
darcs-hash:20110410005917-00fcc-7fbd486327b26986ca2b30698a4c1e07b1b1b326
-rw-r--r-- | paredit.el | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1701,6 +1701,9 @@ If that text is unbalanced, signal an error instead." (kill-region beginning end)) (defun paredit-check-region-state (beginning-state end-state) + "Signal an error if the two parse-partial-sexp states differ. +This guarantees that excising the text between the two states' + points from the buffer will leave the buffer balanced." (paredit-check-region-state-depth beginning-state end-state) (paredit-check-region-state-string beginning-state end-state) (paredit-check-region-state-comment beginning-state end-state) |