Mercurial > hg > xemacs-beta
comparison lisp/w3/w3-prefs.el @ 114:8619ce7e4c50 r20-1b9
Import from CVS: tag r20-1b9
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:21:54 +0200 |
parents | fe104dbd9147 |
children | 9f59509498e1 |
comparison
equal
deleted
inserted
replaced
113:2ec2fe4a4c89 | 114:8619ce7e4c50 |
---|---|
1 ;;; w3-prefs.el --- Preferences panels for Emacs-W3 | 1 ;;; w3-prefs.el --- Preferences panels for Emacs-W3 |
2 ;; Author: wmperry | 2 ;; Author: wmperry |
3 ;; Created: 1997/03/14 06:31:17 | 3 ;; Created: 1997/03/14 23:49:47 |
4 ;; Version: 1.19 | 4 ;; Version: 1.20 |
5 ;; Keywords: hypermedia, preferences | 5 ;; Keywords: hypermedia, preferences |
6 | 6 |
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
8 ;;; Copyright (c) 1996 by William M. Perry (wmperry@cs.indiana.edu) | 8 ;;; Copyright (c) 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. |
217 (doc nil)) | 217 (doc nil)) |
218 (widget-insert "\n") | 218 (widget-insert "\n") |
219 (while todo | 219 (while todo |
220 (setq cur (car todo) | 220 (setq cur (car todo) |
221 todo (cdr todo) | 221 todo (cdr todo) |
222 doc (documentation-property cur 'variable-documentation)) ;; (get cur 'variable-documentation)) | 222 doc (documentation-property cur 'variable-documentation)) |
223 (if (string-match "^\\*" doc) | 223 (if (string-match "^\\*" doc) |
224 (setq doc (substring doc 1 nil))) | 224 (setq doc (substring doc 1 nil))) |
225 (setq pt (point)) | 225 (setq pt (point)) |
226 (widget-insert "\n" (symbol-name cur) " - " doc) | 226 (widget-insert "\n" (symbol-name cur) " - " doc) |
227 (fill-region-as-paragraph pt (point)) | 227 (fill-region-as-paragraph pt (point)) |