# HG changeset patch # User Nick Roberts # Date 1170733233 0 # Node ID cb2393a690281379b39b48a3871283945bc10eb8 # Parent 06935836301b7153c7aa14b7e230a2209e753c62 (gdb-frames-mode): Truncate lines in stack buffer. diff -r 06935836301b -r cb2393a69028 lisp/progmodes/gdb-ui.el --- 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)