mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 20:50:53 -08:00
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 414-422) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 128-130) - Update from CVS - Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-108
This commit is contained in:
commit
af6ea8ad8d
83 changed files with 1676 additions and 641 deletions
|
|
@ -2261,7 +2261,8 @@ Code:, and others referenced in the style guide."
|
|||
(re-search-forward "^;;; Code" nil t)
|
||||
(re-search-forward "^(require" nil t)
|
||||
(re-search-forward "^(" nil t))
|
||||
(beginning-of-line)))
|
||||
(beginning-of-line))
|
||||
(t (re-search-forward ";;; .* --- .*\n")))
|
||||
(if (checkdoc-y-or-n-p
|
||||
"You should have a \";;; Commentary:\", add one? ")
|
||||
(insert "\n;;; Commentary:\n;; \n\n")
|
||||
|
|
|
|||
|
|
@ -200,7 +200,8 @@ Use the command `%s' to change this variable." pretty-name mode))
|
|||
See the command `%s' for a description of this minor-mode."
|
||||
(if body "
|
||||
Setting this variable directly does not take effect;
|
||||
use either \\[customize] or the function `%s'."))))
|
||||
either customize it (see the info node `Easy Customization')
|
||||
or call the function `%s'."))))
|
||||
`(defcustom ,mode ,init-value
|
||||
,(format base-doc-string pretty-name mode mode)
|
||||
,@set
|
||||
|
|
|
|||
|
|
@ -265,11 +265,14 @@ display oriented stuff, use `trace-function-background' instead."
|
|||
;;;###autoload
|
||||
(defun trace-function-background (function &optional buffer)
|
||||
"Traces FUNCTION with trace output going quietly to BUFFER.
|
||||
For every call of FUNCTION Lisp-style trace messages that display argument
|
||||
and return values will be inserted into BUFFER. This function generates the
|
||||
trace advice for FUNCTION and activates it together with any other advice
|
||||
there might be!! Trace output will quietly go to BUFFER without changing
|
||||
the window or buffer configuration at all."
|
||||
When this tracing is enabled, every call to FUNCTION writes
|
||||
a Lisp-style trace message (showing the arguments and return value)
|
||||
into BUFFER. This function generates advice to trace FUNCTION
|
||||
and activates it together with any other advice there might be.
|
||||
The trace output goes to BUFFER quietly, without changing
|
||||
the window or buffer configuration.
|
||||
|
||||
BUFFER defaults to `trace-buffer'."
|
||||
(interactive
|
||||
(list
|
||||
(intern
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue