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