emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106000: * lisp/emacs-lisp/edebug.el:


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106000: * lisp/emacs-lisp/edebug.el: Heed checkdoc recommendations.
Date: Wed, 05 Oct 2011 01:30:03 -0400
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106000
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Wed 2011-10-05 01:30:03 -0400
message:
  * lisp/emacs-lisp/edebug.el: Heed checkdoc recommendations.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/edebug.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2011-10-05 05:28:55 +0000
+++ b/lisp/ChangeLog    2011-10-05 05:30:03 +0000
@@ -1,3 +1,7 @@
+2011-10-05  Stefan Monnier  <address@hidden>
+
+       * emacs-lisp/edebug.el: Heed checkdoc recommendations.
+
 2011-10-05  Glenn Morris  <address@hidden>
 
        * progmodes/perl-mode.el (perl-electric-terminator): Doc fix.

=== modified file 'lisp/emacs-lisp/edebug.el'
--- a/lisp/emacs-lisp/edebug.el 2011-08-21 17:43:31 +0000
+++ b/lisp/emacs-lisp/edebug.el 2011-10-05 05:30:03 +0000
@@ -1557,7 +1557,7 @@
   ;; The first spec is handled and the remainder-handler handles the rest.
   (let ((edebug-matching-depth
         (if (> edebug-matching-depth edebug-max-depth)
-            (error "too deep - perhaps infinite loop in spec?")
+            (error "Too deep - perhaps infinite loop in spec?")
           (1+ edebug-matching-depth))))
     (cond
      ((null specs) nil)
@@ -3201,7 +3201,7 @@
   "Modify the breakpoint for the form at point or after it.
 Set it if FLAG is non-nil, clear it otherwise.  Then move to that point.
 If CONDITION or TEMPORARY are non-nil, add those attributes to
-the breakpoint.  "
+the breakpoint."
   (let ((edebug-stop-point (edebug-find-stop-point)))
     (if edebug-stop-point
        (let* ((edebug-def-name (car edebug-stop-point))
@@ -3879,24 +3879,23 @@
 \\{global-edebug-map}
 
 Options:
-edebug-setup-hook
-edebug-all-defs
-edebug-all-forms
-edebug-save-windows
-edebug-save-displayed-buffer-points
-edebug-initial-mode
-edebug-trace
-edebug-test-coverage
-edebug-continue-kbd-macro
-edebug-print-length
-edebug-print-level
-edebug-print-circle
-edebug-on-error
-edebug-on-quit
-edebug-on-signal
-edebug-unwrap-results
-edebug-global-break-condition
-"
+`edebug-setup-hook'
+`edebug-all-defs'
+`edebug-all-forms'
+`edebug-save-windows'
+`edebug-save-displayed-buffer-points'
+`edebug-initial-mode'
+`edebug-trace'
+`edebug-test-coverage'
+`edebug-continue-kbd-macro'
+`edebug-print-length'
+`edebug-print-level'
+`edebug-print-circle'
+`edebug-on-error'
+`edebug-on-quit'
+`edebug-on-signal'
+`edebug-unwrap-results'
+`edebug-global-break-condition'"
   ;; If the user kills the buffer in which edebug is currently active,
   ;; exit to top level, because the edebug command loop can't usefully
   ;; continue running in such a case.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]