diff options
| author | Nicholas Hubbard <nicholashubbard@posteo.net> | 2022-04-07 11:10:25 -0400 |
|---|---|---|
| committer | Nicholas Hubbard <nicholashubbard@posteo.net> | 2022-04-07 11:10:25 -0400 |
| commit | 1b64f06d7f44bc20e8908e5f2d97ce896b297a24 (patch) | |
| tree | 53cf95ab94dd195b183cdfa0b4a615e1de161acd | |
| parent | 4b6cd12def2016c909bff3a0586b9333971094d0 (diff) | |
Minor documentation change.
| -rw-r--r-- | perspective.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/perspective.el b/perspective.el index 728c14f..ab1c509 100644 --- a/perspective.el +++ b/perspective.el @@ -182,11 +182,10 @@ After BODY is evaluated, frame parameters are reset to their original values." ;; return a regex which matches nothing, and therefore should ignore nothing "$^")) +;; NOTE: This macro is used as a place for setf expressions so be careful with +;; how you modify it as you may break things in surprising ways. (defmacro persp-current-buffers () - "Return a list of all buffers in the current perspective. - -NOTE: This macro is used as a place for setf expressions so be careful with how -you modify it as you may break things in surprising ways." + "Return a list of all buffers in the current perspective." `(persp-buffers (persp-curr))) (defun persp-current-buffers* (&optional include-global) |
