CVSROOT: /cvsroot/auctex Module name: auctex Changes by: Ralf Angeli <angeli> 08/02/09 18:51:33
Index: tex.el =================================================================== RCS file: /cvsroot/auctex/auctex/tex.el,v retrieving revision 5.614 retrieving revision 5.615 diff -u -b -r5.614 -r5.615 --- tex.el 3 Feb 2008 14:53:32 -0000 5.614 +++ tex.el 9 Feb 2008 18:51:33 -0000 5.615 @@ -1,7 +1,8 @@ ;;; tex.el --- Support for TeX documents. ;; Copyright (C) 1985, 1986, 1987, 1991, 1993, 1994, 1996, 1997, 1999, 2000, -;; 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, +;; 2008 Free Software Foundation, Inc. ;; Maintainer: [email protected] ;; Keywords: tex @@ -850,9 +851,13 @@ :group 'AUCTeX) (defcustom TeX-display-help t - "*Non-nil means popup help when stepping through errors with \\[TeX-next-error]." + "Control type of help display when stepping through errors with \\[TeX-next-error]. +If t display help buffer. If nil display message about error in +echo area. If `expert' display output buffer with raw processor output." :group 'TeX-output - :type 'boolean) + :type '(choice (const :tag "Help buffer" t) + (const :tag "Echo area" nil) + (const :tag "Output buffer" expert))) (defcustom TeX-debug-bad-boxes nil "Non-nil means also find overfull/underfull box warnings with \\[TeX-next-error]." _______________________________________________ auctex-diffs mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/auctex-diffs
