diff options
| author | Tino Calancha | 2016-07-22 16:45:51 +0900 |
|---|---|---|
| committer | Tino Calancha | 2016-07-22 16:45:51 +0900 |
| commit | c608f4901af65e9451fba1ca8f03f6d43bfc1ecc (patch) | |
| tree | a56b13d2487690ad7423b4d898a7c0d8028493da | |
| parent | b13b728cc2dfaf2563fecc1fea502f422913ca07 (diff) | |
| download | emacs-c608f4901af65e9451fba1ca8f03f6d43bfc1ecc.tar.gz emacs-c608f4901af65e9451fba1ca8f03f6d43bfc1ecc.zip | |
Update define-ibuffer-op doc string
* lisp/ibuf-macs.el (define-ibuffer-op): Document arg COMPLEX
instead of refer the reader to the source code.
Document arg BODY.
| -rw-r--r-- | lisp/ibuf-macs.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ibuf-macs.el b/lisp/ibuf-macs.el index 2f4d50d9a3e..2411f0588e3 100644 --- a/lisp/ibuf-macs.el +++ b/lisp/ibuf-macs.el | |||
| @@ -198,8 +198,12 @@ operation is complete, in the form: | |||
| 198 | ACTIVE-OPSTRING is a string which will be displayed to the user in a | 198 | ACTIVE-OPSTRING is a string which will be displayed to the user in a |
| 199 | confirmation message, in the form: | 199 | confirmation message, in the form: |
| 200 | \"Really ACTIVE-OPSTRING x buffers?\" | 200 | \"Really ACTIVE-OPSTRING x buffers?\" |
| 201 | COMPLEX means this function is special; see the source code of this | 201 | COMPLEX means this function is special; if COMPLEX is nil BODY |
| 202 | macro for exactly what it does. | 202 | evaluates once for each marked buffer, MBUF, with MBUF current |
| 203 | and saving the point. If COMPLEX is non-nil, BODY evaluates | ||
| 204 | without requiring MBUF current. | ||
| 205 | BODY define the operation; they are forms to evaluate per each | ||
| 206 | marked buffer. | ||
| 203 | 207 | ||
| 204 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" | 208 | \(fn OP ARGS DOCUMENTATION (&key INTERACTIVE MARK MODIFIER-P DANGEROUS OPSTRING ACTIVE-OPSTRING COMPLEX) &rest BODY)" |
| 205 | (declare (indent 2) (doc-string 3)) | 209 | (declare (indent 2) (doc-string 3)) |