Changeset 4148 for trunk/lisp/emacs-lisp/edebug.el
- Timestamp:
- 08/18/06 08:35:31 (2 years ago)
- Files:
-
- trunk/lisp/emacs-lisp/edebug.el (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/emacs-lisp/edebug.el
r4111 r4148 2557 2557 (edebug-outside-point (point)) 2558 2558 (edebug-outside-mark (edebug-mark)) 2559 (edebug-outside-unread-command-events unread-command-events) 2559 2560 edebug-outside-windows ; window or screen configuration 2560 2561 edebug-buffer-points … … 2575 2576 (cursor-in-echo-area nil) 2576 2577 (default-cursor-in-non-selected-windows t) 2578 (unread-command-events unread-command-events) 2577 2579 ;; any others?? 2578 2580 ) … … 2663 2665 (t (message ""))) 2664 2666 2667 (setq unread-command-events nil) 2665 2668 (if (eq 'after edebug-arg-mode) 2666 2669 (progn … … 2682 2685 (edebug-sit-for edebug-sit-for-seconds)) ; Force update and pause. 2683 2686 ((eq edebug-execution-mode 'Trace-fast) 2684 (edebug-sit-for 0)) ; Force update and continue. 2685 ) 2687 (edebug-sit-for 0))) ; Force update and continue. 2686 2688 2687 2689 (unwind-protect … … 2779 2781 ;; Reset global variables to outside values in case they were changed. 2780 2782 (setq 2783 unread-command-events edebug-outside-unread-command-events 2781 2784 overlay-arrow-position edebug-outside-o-a-p 2782 2785 overlay-arrow-string edebug-outside-o-a-s … … 2869 2872 (edebug-outside-last-input-event last-input-event) 2870 2873 (edebug-outside-last-command-event last-command-event) 2871 (edebug-outside-unread-command-events unread-command-events)2872 2874 (edebug-outside-last-event-frame last-event-frame) 2873 2875 (edebug-outside-last-nonmenu-event last-nonmenu-event) … … 2891 2893 (last-input-event nil) 2892 2894 (last-command-event nil) 2893 (unread-command-events nil)2894 2895 (last-event-frame nil) 2895 2896 (last-nonmenu-event nil) … … 2951 2952 this-command edebug-outside-this-command 2952 2953 unread-command-char edebug-outside-unread-command-char 2953 unread-command-events edebug-outside-unread-command-events2954 2954 current-prefix-arg edebug-outside-current-prefix-arg 2955 2955 last-input-char edebug-outside-last-input-char
