2
|
1 ;;; w3-keyword.el --- Emacs-W3 binding style sheet mechanism
|
0
|
2 ;; Author: wmperry
|
2
|
3 ;; Created: 1996/07/23 00:40:54
|
0
|
4 ;; Version: 1.4
|
|
5 ;; Keywords: hypermedia
|
|
6
|
|
7 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2
|
8 ;;; Copyright (c) 1996 by William M. Perry (wmperry@cs.indiana.edu)
|
0
|
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 (let ((keywords '(
|
|
36 :align
|
2
|
37 :average-pitch
|
0
|
38 :link-title
|
|
39 :background
|
|
40 :center
|
2
|
41 :data
|
0
|
42 :depth
|
2
|
43 :left-volume
|
|
44 :right-volume
|
|
45 :pitch-range
|
|
46 :stress
|
|
47 :richness
|
0
|
48 :figalt
|
|
49 :figdata
|
|
50 :fillcol
|
|
51 :form
|
|
52 :formnum
|
2
|
53 :gain
|
0
|
54 :header-start
|
|
55 :help-echo
|
|
56 :href
|
|
57 :link-args
|
|
58 :image
|
|
59 :lists
|
|
60 :map
|
|
61 :name
|
|
62 :needspace
|
|
63 :next-break
|
|
64 :nofill
|
|
65 :nowrap
|
|
66 :optarg
|
|
67 :options
|
|
68 :pre-start
|
|
69 :select
|
|
70 :secret
|
|
71 :table
|
|
72 :text-mangler
|
|
73 :title
|
|
74 :w3-graphic
|
|
75 :zone
|
|
76 :label-text
|
|
77 :seen-this-url
|
|
78
|
|
79 ;; These are duplicated from the font.el code
|
|
80 ;; so that we can share .elc files...
|
|
81
|
|
82 :family
|
|
83 :weight
|
|
84 :extra-light
|
|
85 :light
|
|
86 :demi-light
|
|
87 :medium
|
|
88 :normal
|
|
89 :demi-bold
|
|
90 :bold
|
|
91 :extra-bold
|
|
92 :style
|
|
93 :size
|
|
94 :registry
|
|
95 :encoding
|
|
96 )))
|
|
97 (while keywords
|
|
98 (or (boundp (car keywords))
|
|
99 (set (car keywords) (car keywords)))
|
|
100 (setq keywords (cdr keywords))))
|
|
101
|
|
102 (provide 'w3-keyword)
|