aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-04-30 20:30:53 +0000
committerRichard M. Stallman2005-04-30 20:30:53 +0000
commit75545c843df917d28b82a4320027701cee8efbe7 (patch)
treef8abf719c47e5f6cd0c011a33518cbd4edeafbbf
parent62679725a1a478e9e22dd26ac5c48aa50310f07d (diff)
downloademacs-75545c843df917d28b82a4320027701cee8efbe7.tar.gz
emacs-75545c843df917d28b82a4320027701cee8efbe7.zip
(next-error-overlay-arrow-position): Turn off, for ttys.
-rw-r--r--lisp/simple.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 36f09267235..9b49eb28cc8 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -113,7 +113,9 @@ If `fringe-arrow', indicate the locus by the fringe arrow."
113(defvar next-error-highlight-timer nil) 113(defvar next-error-highlight-timer nil)
114 114
115(defvar next-error-overlay-arrow-position nil) 115(defvar next-error-overlay-arrow-position nil)
116(put 'next-error-overlay-arrow-position 'overlay-arrow-string "=>") 116;; This is nil so as not to really display anything on text
117;; terminals. On text terminals, it would hide part of the file name.
118(put 'next-error-overlay-arrow-position 'overlay-arrow-string "")
117(add-to-list 'overlay-arrow-variable-list 'next-error-overlay-arrow-position) 119(add-to-list 'overlay-arrow-variable-list 'next-error-overlay-arrow-position)
118 120
119(defvar next-error-last-buffer nil 121(defvar next-error-last-buffer nil