diff options
| author | Phil Sainty | 2022-08-13 00:29:22 +1200 |
|---|---|---|
| committer | Phil Sainty | 2022-08-13 00:36:49 +1200 |
| commit | 5397d684d8a90c5d33607b0f1f6fe5f9bc4cd586 (patch) | |
| tree | 72457bff91723aaee8009b5c39154a399ef985de | |
| parent | faf43bcab15df1bddcc83f954494104d5c0e6862 (diff) | |
| download | emacs-scratch/bulk-tracing.tar.gz emacs-scratch/bulk-tracing.zip | |
* lisp/emacs-lisp/trace.el: Correct outdated documentationscratch/bulk-tracing
Experimenting with `goto-char' and `re-search-backwards' indicates
that this limitation no longer applies. The rewrite using nadvice in
commit 8b62d7427e12bbf07ab3454cc061a6b43ded56dd might have eliminated
this issue.
| -rw-r--r-- | lisp/emacs-lisp/trace.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/trace.el b/lisp/emacs-lisp/trace.el index fcc322ec67f..a4fcfd50b03 100644 --- a/lisp/emacs-lisp/trace.el +++ b/lisp/emacs-lisp/trace.el | |||
| @@ -40,8 +40,6 @@ | |||
| 40 | 40 | ||
| 41 | ;; Restrictions: | 41 | ;; Restrictions: |
| 42 | ;; ============= | 42 | ;; ============= |
| 43 | ;; - Traced subrs when called interactively will always show nil as the | ||
| 44 | ;; value of their arguments. | ||
| 45 | ;; - Only functions/macros/subrs that are called via their function cell will | 43 | ;; - Only functions/macros/subrs that are called via their function cell will |
| 46 | ;; generate trace output, hence, you won't get trace output for: | 44 | ;; generate trace output, hence, you won't get trace output for: |
| 47 | ;; + Subrs called directly from other subrs/C-code | 45 | ;; + Subrs called directly from other subrs/C-code |