diff options
| author | Nick Roberts | 2007-02-28 21:15:13 +0000 |
|---|---|---|
| committer | Nick Roberts | 2007-02-28 21:15:13 +0000 |
| commit | 20864cf0aadead9ccbb5c0b324d2e57b7036e7d8 (patch) | |
| tree | ea318a712a61ec19170ef66c096a871c8cdc4f47 /lisp | |
| parent | 946829843b38a050be0f397824bbc6070eda0740 (diff) | |
| download | emacs-20864cf0aadead9ccbb5c0b324d2e57b7036e7d8.tar.gz emacs-20864cf0aadead9ccbb5c0b324d2e57b7036e7d8.zip | |
(gdb-mouse-until, gdb-mouse-jump):
Correct doc strings.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/gdb-ui.el | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el index 02c65ae07df..b598f2de1f7 100644 --- a/lisp/progmodes/gdb-ui.el +++ b/lisp/progmodes/gdb-ui.el | |||
| @@ -618,8 +618,9 @@ With arg, use separate IO iff arg is positive." | |||
| 618 | 618 | ||
| 619 | (defun gdb-mouse-until (event) | 619 | (defun gdb-mouse-until (event) |
| 620 | "Continue running until a source line past the current line. | 620 | "Continue running until a source line past the current line. |
| 621 | The destination source line can be selected either by clicking with mouse-2 | 621 | The destination source line can be selected either by clicking |
| 622 | on the fringe/margin or dragging the arrow with mouse-1 (default bindings)." | 622 | with mouse-3 on the fringe/margin or dragging the arrow |
| 623 | with mouse-1 (default bindings)." | ||
| 623 | (interactive "e") | 624 | (interactive "e") |
| 624 | (let ((start (event-start event)) | 625 | (let ((start (event-start event)) |
| 625 | (end (event-end event))) | 626 | (end (event-end event))) |
| @@ -634,8 +635,8 @@ on the fringe/margin or dragging the arrow with mouse-1 (default bindings)." | |||
| 634 | 635 | ||
| 635 | (defun gdb-mouse-jump (event) | 636 | (defun gdb-mouse-jump (event) |
| 636 | "Set execution address/line. | 637 | "Set execution address/line. |
| 637 | The destination source line can be selected either by clicking with mouse-2 | 638 | The destination source line can be selected either by clicking with C-mouse-3 |
| 638 | on the fringe/margin or dragging the arrow with mouse-1 (default bindings). | 639 | on the fringe/margin or dragging the arrow with C-mouse-1 (default bindings). |
| 639 | Unlike gdb-mouse-until the destination address can be before the current | 640 | Unlike gdb-mouse-until the destination address can be before the current |
| 640 | line, and no execution takes place." | 641 | line, and no execution takes place." |
| 641 | (interactive "e") | 642 | (interactive "e") |