comparison lisp/w3/w3-cus.el @ 38:1a767b41a199 r19-15b102

Import from CVS: tag r19-15b102
author cvs
date Mon, 13 Aug 2007 08:54:01 +0200
parents c53a95d3c46d
children 8d2a9b52c682
comparison
equal deleted inserted replaced
37:ad40ac360d14 38:1a767b41a199
1 ;;; w3-cus.el --- Customization support for Emacs-W3 1 ;;; w3-cus.el --- Customization support for Emacs-W3
2 ;; Author: wmperry 2 ;; Author: wmperry
3 ;; Created: 1997/03/14 21:35:54 3 ;; Created: 1997/03/18 20:30:34
4 ;; Version: 1.4 4 ;; Version: 1.5
5 ;; Keywords: comm, help, hypermedia 5 ;; Keywords: comm, help, hypermedia
6 6
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8 ;;; Copyright (c) 1993 - 1996 by William M. Perry (wmperry@cs.indiana.edu) 8 ;;; Copyright (c) 1993 - 1996 by William M. Perry (wmperry@cs.indiana.edu)
9 ;;; Copyright (c) 1996, 1997 Free Software Foundation, Inc. 9 ;;; Copyright (c) 1996, 1997 Free Software Foundation, Inc.
112 :group 'w3-files 112 :group 'w3-files
113 :type 'directory) 113 :type 'directory)
114 114
115 ;;; Display related variables 115 ;;; Display related variables
116 (defcustom w3-display-frames nil 116 (defcustom w3-display-frames nil
117 "*Fetch frames - not optimal." 117 "*Fetch frames - can be:
118 :group 'w3-display 118 nil no frame display whatsoever
119 :type 'boolean) 119 'as-links display frame hyperlinks, but do not fetch them
120 'ask display frame hyperlinks and ask whether to fetch them
121 t display frame hyperlinks and fetch them."
122 :group 'w3-display
123 :type '(choice (const :tag "Do not display frames" :value nil)
124 (const :tag "Show hyperlinks" :value as-links)
125 (const :tag "Show hyperlinks, ask whether to retrieve them" :value ask)
126 (const :tag "Automatically retrieve frames" :value t)))
120 127
121 (defcustom w3-do-incremental-display nil 128 (defcustom w3-do-incremental-display nil
122 "*Whether to do incremental display of pages or not." 129 "*Whether to do incremental display of pages or not."
123 :group 'w3-display 130 :group 'w3-display
124 :type 'boolean) 131 :type 'boolean)