aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2002-11-14 08:57:24 +0000
committerJuanma Barranquero2002-11-14 08:57:24 +0000
commit4792bde6cc09d45fa2ea6cd45daf1587a965d1b2 (patch)
tree37067de136f7b4cba5d9d7fd3fb71ae0ab10d489
parent2c46c4c84b74c9599b6bd75402c4fe814b0f7d45 (diff)
downloademacs-4792bde6cc09d45fa2ea6cd45daf1587a965d1b2.tar.gz
emacs-4792bde6cc09d45fa2ea6cd45daf1587a965d1b2.zip
Fix feature name in `require'.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/gdb-ui.el20
2 files changed, 16 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1d3414d185c..fb5383f1e9c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12002-11-14 Juanma Barranquero <lektu@terra.es>
2
3 * gud.el: Fix feature name in `provide'.
4
5 * gdb-ui.el: Fix feature name in `require'.
6
12002-11-14 Per Cederqvist <ceder@lysator.liu.se> (tiny change) 72002-11-14 Per Cederqvist <ceder@lysator.liu.se> (tiny change)
2 8
3 * progmodes/etags.el (find-tag-default): Copy text at point without 9 * progmodes/etags.el (find-tag-default): Copy text at point without
diff --git a/lisp/gdb-ui.el b/lisp/gdb-ui.el
index ee2323099de..85dca7837ba 100644
--- a/lisp/gdb-ui.el
+++ b/lisp/gdb-ui.el
@@ -29,7 +29,7 @@
29 29
30;;; Code: 30;;; Code:
31 31
32(require 'mygud) 32(require 'gud)
33 33
34(defcustom gdb-many-windows t 34(defcustom gdb-many-windows t
35 "If t, using gdba, start gdb with ancillary buffers visible. 35 "If t, using gdba, start gdb with ancillary buffers visible.
@@ -81,7 +81,7 @@ in the GUD buffer.
81 81
82Displayed expressions appear in separate frames. Arrays may be displayed 82Displayed expressions appear in separate frames. Arrays may be displayed
83as slices and visualised using the graph program from plotutils if installed. 83as slices and visualised using the graph program from plotutils if installed.
84 84
85If `gdb-many-windows' is set to nil then gdb starts with just two windows : 85If `gdb-many-windows' is set to nil then gdb starts with just two windows :
86the GUD and the source buffer. 86the GUD and the source buffer.
87 87
@@ -283,9 +283,9 @@ The following interactive lisp functions help control operation :
283;; representation) and buffers associated with those objects. 283;; representation) and buffers associated with those objects.
284;; 284;;
285 285
286;; 286;;
287;; gdb-instance objects 287;; gdb-instance objects
288;; 288;;
289 289
290(defun make-gdb-instance (proc) 290(defun make-gdb-instance (proc)
291 "Create a gdb instance object from a gdb process." 291 "Create a gdb instance object from a gdb process."
@@ -1299,7 +1299,7 @@ buffer."
1299 (let ((annotation (substring burst 1299 (let ((annotation (substring burst
1300 (match-beginning 1) 1300 (match-beginning 1)
1301 (match-end 1)))) 1301 (match-end 1))))
1302 1302
1303 ;; Stuff prior to the match is just ordinary output. 1303 ;; Stuff prior to the match is just ordinary output.
1304 ;; It is either concatenated to OUTPUT or directed 1304 ;; It is either concatenated to OUTPUT or directed
1305 ;; elsewhere. 1305 ;; elsewhere.
@@ -1311,7 +1311,7 @@ buffer."
1311 1311
1312 ;; Take that stuff off the burst. 1312 ;; Take that stuff off the burst.
1313 (setq burst (substring burst (match-end 0))) 1313 (setq burst (substring burst (match-end 0)))
1314 1314
1315 ;; Parse the tag from the annotation, and maybe its arguments. 1315 ;; Parse the tag from the annotation, and maybe its arguments.
1316 (string-match "\\(\\S-*\\) ?\\(.*\\)" annotation) 1316 (string-match "\\(\\S-*\\) ?\\(.*\\)" annotation)
1317 (let* ((annotation-type (substring annotation 1317 (let* ((annotation-type (substring annotation
@@ -1416,7 +1416,7 @@ buffer."
1416;; The idle input queue and the output phasing associated with 1416;; The idle input queue and the output phasing associated with
1417;; the instance variable `(gdb-instance-output-sink instance)' help 1417;; the instance variable `(gdb-instance-output-sink instance)' help
1418;; us to run commands behind the user's back. 1418;; us to run commands behind the user's back.
1419;; 1419;;
1420;; Below is the code for specificly managing buffers of output from one 1420;; Below is the code for specificly managing buffers of output from one
1421;; command. 1421;; command.
1422;; 1422;;
@@ -1443,7 +1443,7 @@ buffer."
1443 instance 1443 instance
1444 (cons ',name 1444 (cons ',name
1445 (gdb-instance-pending-triggers instance))))))) 1445 (gdb-instance-pending-triggers instance)))))))
1446 1446
1447(defmacro def-gdb-auto-update-handler (name trigger buf-key custom-defun) 1447(defmacro def-gdb-auto-update-handler (name trigger buf-key custom-defun)
1448 `(defun ,name () 1448 `(defun ,name ()
1449 (set-gdb-instance-pending-triggers 1449 (set-gdb-instance-pending-triggers
@@ -1480,7 +1480,7 @@ buffer."
1480 1480
1481;; 1481;;
1482;; Breakpoint buffers 1482;; Breakpoint buffers
1483;; 1483;;
1484;; These display the output of `info breakpoints'. 1484;; These display the output of `info breakpoints'.
1485;; 1485;;
1486 1486
@@ -2103,7 +2103,7 @@ buffer."
2103 (setq answer (split-window largest new-size)) 2103 (setq answer (split-window largest new-size))
2104 (set-window-buffer answer buf))) 2104 (set-window-buffer answer buf)))
2105 answer)) 2105 answer))
2106 2106
2107(defun gdb-display-source-buffer (buffer) 2107(defun gdb-display-source-buffer (buffer)
2108 (set-window-buffer gdb-source-window buffer)) 2108 (set-window-buffer gdb-source-window buffer))
2109 2109