changeset 75690:cb2393a69028

(gdb-frames-mode): Truncate lines in stack buffer.
author Nick Roberts <nickrob@snap.net.nz>
date Tue, 06 Feb 2007 03:40:33 +0000
parents 06935836301b
children ac223634f645
files lisp/progmodes/gdb-ui.el
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/progmodes/gdb-ui.el	Tue Feb 06 03:38:59 2007 +0000
+++ b/lisp/progmodes/gdb-ui.el	Tue Feb 06 03:40:33 2007 +0000
@@ -2158,8 +2158,9 @@
   (kill-all-local-variables)
   (setq major-mode 'gdb-frames-mode)
   (setq mode-name "Frames")
-  (setq gdb-stack-position nil)
+  (setq gdb-stack-position nil) 
   (add-to-list 'overlay-arrow-variable-list 'gdb-stack-position)
+  (setq truncate-lines t)  ;; Make it easier to see overlay arrow.
   (setq buffer-read-only t)
   (use-local-map gdb-frames-mode-map)
   (run-mode-hooks 'gdb-frames-mode-hook)