0
|
1 ;;; w3-keyword.el,v --- Emacs-W3 binding style sheet mechanism
|
|
2 ;; Author: wmperry
|
|
3 ;; Created: 1996/05/30 14:37:30
|
|
4 ;; Version: 1.4
|
|
5 ;; Keywords: hypermedia
|
|
6
|
|
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
8 ;;; Copyright (c) 1996 by William M. Perry (wmperry@spry.com)
|
|
9 ;;;
|
|
10 ;;; This file is not part of GNU Emacs, but the same permissions apply.
|
|
11 ;;;
|
|
12 ;;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
13 ;;; it under the terms of the GNU General Public License as published by
|
|
14 ;;; the Free Software Foundation; either version 2, or (at your option)
|
|
15 ;;; any later version.
|
|
16 ;;;
|
|
17 ;;; GNU Emacs is distributed in the hope that it will be useful,
|
|
18 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
20 ;;; GNU General Public License for more details.
|
|
21 ;;;
|
|
22 ;;; You should have received a copy of the GNU General Public License
|
|
23 ;;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
24 ;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
25 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
26
|
|
27 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
28 ;;; Lots of generic keywords for use by Emacs-W3
|
|
29 ;;;
|
|
30 ;;; This is in a separate file just for sanity's sake - I cannot rely on
|
|
31 ;;; keywords being automatically recognized (ala XEmacs), and doing a
|
|
32 ;;; defconst doesn't work either, because the byte-compiler gets too
|
|
33 ;;; smart for us, and the .elc files are no longer portable. Joy oh joy!
|
|
34 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
35
|
|
36 (let ((keywords '(
|
|
37 :align
|
|
38 :link-title
|
|
39 :background
|
|
40 :center
|
|
41 :depth
|
|
42 :figalt
|
|
43 :figdata
|
|
44 :fillcol
|
|
45 :form
|
|
46 :formnum
|
|
47 :header-start
|
|
48 :help-echo
|
|
49 :href
|
|
50 :link-args
|
|
51 :image
|
|
52 :lists
|
|
53 :map
|
|
54 :mpeg
|
|
55 :name
|
|
56 :needspace
|
|
57 :next-break
|
|
58 :nofill
|
|
59 :nowrap
|
|
60 :optarg
|
|
61 :options
|
|
62 :pre-start
|
|
63 :select
|
|
64 :secret
|
|
65 :table
|
|
66 :text-mangler
|
|
67 :title
|
|
68 :w3-graphic
|
|
69 :zone
|
|
70 :label-text
|
|
71 :seen-this-url
|
|
72
|
|
73 ;; These are duplicated from the font.el code
|
|
74 ;; so that we can share .elc files...
|
|
75
|
|
76 :family
|
|
77 :weight
|
|
78 :extra-light
|
|
79 :light
|
|
80 :demi-light
|
|
81 :medium
|
|
82 :normal
|
|
83 :demi-bold
|
|
84 :bold
|
|
85 :extra-bold
|
|
86 :style
|
|
87 :size
|
|
88 :registry
|
|
89 :encoding
|
|
90 )))
|
|
91 (while keywords
|
|
92 (or (boundp (car keywords))
|
|
93 (set (car keywords) (car keywords)))
|
|
94 (setq keywords (cdr keywords))))
|
|
95
|
|
96 (provide 'w3-keyword)
|