aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2005-08-15 21:29:32 +0000
committerDan Nicolaescu2005-08-15 21:29:32 +0000
commite95e5f8193f5f7f11cb0238330b4d7f39760fe25 (patch)
tree694ea8d8e0381c23d8d33824c74e9aeacdb1b053
parentca19f3f1d1690a79d296d22ed42102bd986fbbc6 (diff)
downloademacs-e95e5f8193f5f7f11cb0238330b4d7f39760fe25.tar.gz
emacs-e95e5f8193f5f7f11cb0238330b4d7f39760fe25.zip
* mh-customize.el: Do not use face-alias compatibility for
faces that did not appear in the previous Emacs release. * buff-menu.el: * compare-w.el: * emacs-lisp/testcover.el: * play/gomoku.el: * play/mpuz.el: * progmodes/flymake.el: * progmodes/gdb-ui.el: * progmodes/idlw-help.el: * progmodes/idlw-shell.el: * progmodes/ld-script.el: * progmodes/which-func.el: * ruler-mode.el: * strokes.el: * textmodes/sgml-mode.el: * textmodes/table.el: Do not use face-alias for backward compatibility for faces that did not appear in the previous Emacs release.
-rw-r--r--lisp/ChangeLog18
-rw-r--r--lisp/buff-menu.el2
-rw-r--r--lisp/compare-w.el2
-rw-r--r--lisp/emacs-lisp/testcover.el4
-rw-r--r--lisp/mh-e/ChangeLog5
-rw-r--r--lisp/mh-e/mh-customize.el52
-rw-r--r--lisp/play/gomoku.el4
-rw-r--r--lisp/play/mpuz.el8
-rw-r--r--lisp/progmodes/compile.el4
-rw-r--r--lisp/progmodes/flymake.el4
-rw-r--r--lisp/progmodes/gdb-ui.el2
-rw-r--r--lisp/progmodes/idlw-help.el2
-rw-r--r--lisp/progmodes/idlw-shell.el9
-rw-r--r--lisp/progmodes/ld-script.el2
-rw-r--r--lisp/progmodes/which-func.el2
-rw-r--r--lisp/ruler-mode.el20
-rw-r--r--lisp/strokes.el2
-rw-r--r--lisp/textmodes/sgml-mode.el2
-rw-r--r--lisp/textmodes/table.el2
19 files changed, 25 insertions, 121 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index ecaf4d871d4..d3189df570e 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,23 @@
12005-08-15 Dan Nicolaescu <dann@ics.uci.edu> 12005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
2 2
3 * buff-menu.el:
4 * compare-w.el:
5 * emacs-lisp/testcover.el:
6 * play/gomoku.el:
7 * play/mpuz.el:
8 * progmodes/flymake.el:
9 * progmodes/gdb-ui.el:
10 * progmodes/idlw-help.el:
11 * progmodes/idlw-shell.el:
12 * progmodes/ld-script.el:
13 * progmodes/which-func.el:
14 * ruler-mode.el:
15 * strokes.el:
16 * textmodes/sgml-mode.el:
17 * textmodes/table.el: Do not use face-alias for backward
18 compatibility for faces that did not appear in the previous Emacs
19 release.
20
3 * simple.el (next-error-follow-minor-mode): Fix init value and 21 * simple.el (next-error-follow-minor-mode): Fix init value and
4 ligher. 22 ligher.
5 23
diff --git a/lisp/buff-menu.el b/lisp/buff-menu.el
index 76a74064589..9418eebe98f 100644
--- a/lisp/buff-menu.el
+++ b/lisp/buff-menu.el
@@ -79,8 +79,6 @@
79 "Face used to highlight buffer name." 79 "Face used to highlight buffer name."
80 :group 'Buffer-menu 80 :group 'Buffer-menu
81 :group 'font-lock-highlighting-faces) 81 :group 'font-lock-highlighting-faces)
82;; backward-compatibility alias
83(put 'Buffer-menu-buffer-face 'face-alias 'Buffer-menu-buffer)
84 82
85(defcustom Buffer-menu-buffer+size-width 26 83(defcustom Buffer-menu-buffer+size-width 26
86 "*How wide to jointly make the buffer name and size columns." 84 "*How wide to jointly make the buffer name and size columns."
diff --git a/lisp/compare-w.el b/lisp/compare-w.el
index 5795ce048c9..3fda5f5de76 100644
--- a/lisp/compare-w.el
+++ b/lisp/compare-w.el
@@ -127,8 +127,6 @@ and the value `((4) (4))' for horizontally split windows."
127 "Face for highlighting of compare-windows difference regions." 127 "Face for highlighting of compare-windows difference regions."
128 :group 'compare-w 128 :group 'compare-w
129 :version "22.1") 129 :version "22.1")
130;; backward-compatibility alias
131(put 'compare-windows-face 'face-alias 'compare-windows)
132 130
133(defvar compare-windows-overlay1 nil) 131(defvar compare-windows-overlay1 nil)
134(defvar compare-windows-overlay2 nil) 132(defvar compare-windows-overlay2 nil)
diff --git a/lisp/emacs-lisp/testcover.el b/lisp/emacs-lisp/testcover.el
index 4473d514c89..c0afffdf391 100644
--- a/lisp/emacs-lisp/testcover.el
+++ b/lisp/emacs-lisp/testcover.el
@@ -154,15 +154,11 @@ call to one of the `testcover-1value-functions'."
154 '((t (:background "DeepPink2"))) 154 '((t (:background "DeepPink2")))
155 "Face for forms that had no hits during coverage test" 155 "Face for forms that had no hits during coverage test"
156 :group 'testcover) 156 :group 'testcover)
157;; backward-compatibility alias
158(put 'testcover-nohits-face 'face-alias 'testcover-nohits)
159 157
160(defface testcover-1value 158(defface testcover-1value
161 '((t (:background "Wheat2"))) 159 '((t (:background "Wheat2")))
162 "Face for forms that always produced the same value during coverage test" 160 "Face for forms that always produced the same value during coverage test"
163 :group 'testcover) 161 :group 'testcover)
164;; backward-compatibility alias
165(put 'testcover-1value-face 'face-alias 'testcover-1value)
166 162
167 163
168;;;========================================================================= 164;;;=========================================================================
diff --git a/lisp/mh-e/ChangeLog b/lisp/mh-e/ChangeLog
index b217ae5e9f3..82bedd7c2a6 100644
--- a/lisp/mh-e/ChangeLog
+++ b/lisp/mh-e/ChangeLog
@@ -1,3 +1,8 @@
12005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * mh-customize.el: Do not use face-alias compatibility for
4 faces that did not appear in the previous Emacs release.
5
12005-08-10 Lars Hansen <larsh@soem.dk> 62005-08-10 Lars Hansen <larsh@soem.dk>
2 * mh-e.el: Add handler to desktop-buffer-mode-handlers. 7 * mh-e.el: Add handler to desktop-buffer-mode-handlers.
3 (mh-restore-desktop-buffer): Remove autoload cookie. 8 (mh-restore-desktop-buffer): Remove autoload cookie.
diff --git a/lisp/mh-e/mh-customize.el b/lisp/mh-e/mh-customize.el
index c2a86d4a731..4a9882b566c 100644
--- a/lisp/mh-e/mh-customize.el
+++ b/lisp/mh-e/mh-customize.el
@@ -2155,8 +2155,6 @@ will be removed from the unseen sequence."
2155 (t (:italic t))) 2155 (t (:italic t)))
2156 "Face used to highlight body text in MH-Folder buffers." 2156 "Face used to highlight body text in MH-Folder buffers."
2157 :group 'mh-folder-faces) 2157 :group 'mh-folder-faces)
2158;; backward-compatibility alias
2159(put 'mh-folder-body-face 'face-alias 'mh-folder-body)
2160 2158
2161(defvar mh-folder-cur-msg-face 'mh-folder-cur-msg 2159(defvar mh-folder-cur-msg-face 'mh-folder-cur-msg
2162 "Face used for the current message line in MH-Folder buffers.") 2160 "Face used for the current message line in MH-Folder buffers.")
@@ -2172,8 +2170,6 @@ will be removed from the unseen sequence."
2172 (t (:underline t))) 2170 (t (:underline t)))
2173 "Face used for the current message line in MH-Folder buffers." 2171 "Face used for the current message line in MH-Folder buffers."
2174 :group 'mh-folder-faces) 2172 :group 'mh-folder-faces)
2175;; backward-compatibility alias
2176(put 'mh-folder-cur-msg-face 'face-alias 'mh-folder-cur-msg)
2177 2173
2178(defvar mh-folder-cur-msg-number-face 'mh-folder-cur-msg-number 2174(defvar mh-folder-cur-msg-number-face 'mh-folder-cur-msg-number
2179 "Face used to highlight the current message in MH-Folder buffers.") 2175 "Face used to highlight the current message in MH-Folder buffers.")
@@ -2186,8 +2182,6 @@ will be removed from the unseen sequence."
2186 (t (:bold t))) 2182 (t (:bold t)))
2187 "Face used to highlight the current message in MH-Folder buffers." 2183 "Face used to highlight the current message in MH-Folder buffers."
2188 :group 'mh-folder-faces) 2184 :group 'mh-folder-faces)
2189;; backward-compatibility alias
2190(put 'mh-folder-cur-msg-number-face 'face-alias 'mh-folder-cur-msg-number)
2191 2185
2192(defvar mh-folder-date-face 'mh-folder-date 2186(defvar mh-folder-date-face 'mh-folder-date
2193 "Face used to highlight the date in MH-Folder buffers.") 2187 "Face used to highlight the date in MH-Folder buffers.")
@@ -2200,8 +2194,6 @@ will be removed from the unseen sequence."
2200 (:bold t))) 2194 (:bold t)))
2201 "Face used to highlight the date in MH-Folder buffers." 2195 "Face used to highlight the date in MH-Folder buffers."
2202 :group 'mh-folder-faces) 2196 :group 'mh-folder-faces)
2203;; backward-compatibility alias
2204(put 'mh-folder-date-face 'face-alias 'mh-folder-date)
2205 2197
2206(defvar mh-folder-followup-face 'mh-folder-followup 2198(defvar mh-folder-followup-face 'mh-folder-followup
2207 "Face used to highlight Re: subject text in MH-Folder buffers.") 2199 "Face used to highlight Re: subject text in MH-Folder buffers.")
@@ -2214,8 +2206,6 @@ will be removed from the unseen sequence."
2214 (:bold t))) 2206 (:bold t)))
2215 "Face used to highlight Re: subject text in MH-Folder buffers." 2207 "Face used to highlight Re: subject text in MH-Folder buffers."
2216 :group 'mh-folder-faces) 2208 :group 'mh-folder-faces)
2217;; backward-compatibility alias
2218(put 'mh-folder-followup-face 'face-alias 'mh-folder-followup)
2219 2209
2220(defvar mh-folder-msg-number-face 'mh-folder-msg-number 2210(defvar mh-folder-msg-number-face 'mh-folder-msg-number
2221 "Face used to highlight the message number in MH-Folder buffers.") 2211 "Face used to highlight the message number in MH-Folder buffers.")
@@ -2228,8 +2218,6 @@ will be removed from the unseen sequence."
2228 (:bold t))) 2218 (:bold t)))
2229 "Face used to highlight the message number in MH-Folder buffers." 2219 "Face used to highlight the message number in MH-Folder buffers."
2230 :group 'mh-folder-faces) 2220 :group 'mh-folder-faces)
2231;; backward-compatibility alias
2232(put 'mh-folder-msg-number-face 'face-alias 'mh-folder-msg-number)
2233 2221
2234(defvar mh-folder-deleted-face 'mh-folder-deleted 2222(defvar mh-folder-deleted-face 'mh-folder-deleted
2235 "Face used to highlight deleted messages in MH-Folder buffers.") 2223 "Face used to highlight deleted messages in MH-Folder buffers.")
@@ -2248,8 +2236,6 @@ will be removed from the unseen sequence."
2248 (t (:bold t :italic t))) 2236 (t (:bold t :italic t)))
2249 "Face used to highlight refiled messages in MH-Folder buffers." 2237 "Face used to highlight refiled messages in MH-Folder buffers."
2250 :group 'mh-folder-faces) 2238 :group 'mh-folder-faces)
2251;; backward-compatibility alias
2252(put 'mh-folder-refiled-face 'face-alias 'mh-folder-refiled)
2253 2239
2254(defvar mh-folder-subject-face 'mh-folder-subject 2240(defvar mh-folder-subject-face 'mh-folder-subject
2255 "Face used to highlight subject text in MH-Folder buffers.") 2241 "Face used to highlight subject text in MH-Folder buffers.")
@@ -2264,8 +2250,6 @@ will be removed from the unseen sequence."
2264 (:bold t))) 2250 (:bold t)))
2265 "Face used to highlight subject text in MH-Folder buffers." 2251 "Face used to highlight subject text in MH-Folder buffers."
2266 :group 'mh-folder-faces) 2252 :group 'mh-folder-faces)
2267;; backward-compatibility alias
2268(put 'mh-folder-subject-face 'face-alias 'mh-folder-subject)
2269 2253
2270(defface mh-folder-tick 2254(defface mh-folder-tick
2271 '((((class color) (background dark)) (:background "#dddf7e")) 2255 '((((class color) (background dark)) (:background "#dddf7e"))
@@ -2273,8 +2257,6 @@ will be removed from the unseen sequence."
2273 (t (:underline t))) 2257 (t (:underline t)))
2274 "Face used to show ticked messages." 2258 "Face used to show ticked messages."
2275 :group 'mh-folder-faces) 2259 :group 'mh-folder-faces)
2276;; backward-compatibility alias
2277(put 'mh-folder-tick-face 'face-alias 'mh-folder-tick)
2278 2260
2279(defvar mh-folder-address-face 'mh-folder-address 2261(defvar mh-folder-address-face 'mh-folder-address
2280 "Face used to highlight the address in MH-Folder buffers.") 2262 "Face used to highlight the address in MH-Folder buffers.")
@@ -2295,8 +2277,6 @@ will be removed from the unseen sequence."
2295 (t (:italic t))) 2277 (t (:italic t)))
2296 "Face used to highlight the To: string in MH-Folder buffers." 2278 "Face used to highlight the To: string in MH-Folder buffers."
2297 :group 'mh-folder-faces) 2279 :group 'mh-folder-faces)
2298;; backward-compatibility alias
2299(put 'mh-folder-to-face 'face-alias 'mh-folder-to)
2300 2280
2301 2281
2302 2282
@@ -2313,8 +2293,6 @@ will be removed from the unseen sequence."
2313 (:bold t))) 2293 (:bold t)))
2314 "Face used to highlight folders in MH-Index buffers." 2294 "Face used to highlight folders in MH-Index buffers."
2315 :group 'mh-index-faces) 2295 :group 'mh-index-faces)
2316;; backward-compatibility alias
2317(put 'mh-index-folder-face 'face-alias 'mh-index-folder)
2318 2296
2319 2297
2320 2298
@@ -2328,8 +2306,6 @@ will be removed from the unseen sequence."
2328 (t (:bold t))) 2306 (t (:bold t)))
2329 "Face used to display header fields in draft buffers." 2307 "Face used to display header fields in draft buffers."
2330 :group 'mh-letter-faces) 2308 :group 'mh-letter-faces)
2331;; backward-compatibility alias
2332(put 'mh-letter-header-field-face 'face-alias 'mh-letter-header-field)
2333 2309
2334 2310
2335 2311
@@ -2348,8 +2324,6 @@ will be removed from the unseen sequence."
2348 (t (:bold t :italic t))) 2324 (t (:bold t :italic t)))
2349 "Face used to highlight cc: header fields." 2325 "Face used to highlight cc: header fields."
2350 :group 'mh-show-faces) 2326 :group 'mh-show-faces)
2351;; backward-compatibility alias
2352(put 'mh-show-cc-face 'face-alias 'mh-show-cc)
2353 2327
2354(defvar mh-show-date-face 'mh-show-date 2328(defvar mh-show-date-face 'mh-show-date
2355 "Face used to highlight the Date: header field.") 2329 "Face used to highlight the Date: header field.")
@@ -2362,8 +2336,6 @@ will be removed from the unseen sequence."
2362 (t (:bold t :underline t))) 2336 (t (:bold t :underline t)))
2363 "Face used to highlight the Date: header field." 2337 "Face used to highlight the Date: header field."
2364 :group 'mh-show-faces) 2338 :group 'mh-show-faces)
2365;; backward-compatibility alias
2366(put 'mh-show-date-face 'face-alias 'mh-show-date)
2367 2339
2368(defvar mh-show-header-face 'mh-show-header 2340(defvar mh-show-header-face 'mh-show-header
2369 "Face used to deemphasize unspecified header fields.") 2341 "Face used to deemphasize unspecified header fields.")
@@ -2376,8 +2348,6 @@ will be removed from the unseen sequence."
2376 (t (:italic t))) 2348 (t (:italic t)))
2377 "Face used to deemphasize unspecified header fields." 2349 "Face used to deemphasize unspecified header fields."
2378 :group 'mh-show-faces) 2350 :group 'mh-show-faces)
2379;; backward-compatibility alias
2380(put 'mh-show-header-face 'face-alias 'mh-show-header)
2381 2351
2382(defvar mh-show-pgg-good-face 'mh-show-pgg-good 2352(defvar mh-show-pgg-good-face 'mh-show-pgg-good
2383 "Face used to highlight a good PGG signature.") 2353 "Face used to highlight a good PGG signature.")
@@ -2385,8 +2355,6 @@ will be removed from the unseen sequence."
2385 '((t (:bold t :foreground "LimeGreen"))) 2355 '((t (:bold t :foreground "LimeGreen")))
2386 "Face used to highlight a good PGG signature." 2356 "Face used to highlight a good PGG signature."
2387 :group 'mh-show-faces) 2357 :group 'mh-show-faces)
2388;; backward-compatibility alias
2389(put 'mh-show-pgg-good-face 'face-alias 'mh-show-pgg-good)
2390 2358
2391(defvar mh-show-pgg-unknown-face 'mh-show-pgg-unknown 2359(defvar mh-show-pgg-unknown-face 'mh-show-pgg-unknown
2392 "Face used to highlight a PGG signature whose status is unknown. 2360 "Face used to highlight a PGG signature whose status is unknown.
@@ -2396,8 +2364,6 @@ This face is also used for a signature when the signer is untrusted.")
2396 "Face used to highlight a PGG signature whose status is unknown. 2364 "Face used to highlight a PGG signature whose status is unknown.
2397This face is also used for a signature when the signer is untrusted." 2365This face is also used for a signature when the signer is untrusted."
2398 :group 'mh-show-faces) 2366 :group 'mh-show-faces)
2399;; backward-compatibility alias
2400(put 'mh-show-pgg-unknown-face 'face-alias 'mh-show-pgg-unknown)
2401 2367
2402(defvar mh-show-pgg-bad-face 'mh-show-pgg-bad 2368(defvar mh-show-pgg-bad-face 'mh-show-pgg-bad
2403 "Face used to highlight a bad PGG signature.") 2369 "Face used to highlight a bad PGG signature.")
@@ -2405,15 +2371,11 @@ This face is also used for a signature when the signer is untrusted."
2405 '((t (:bold t :foreground "DeepPink1"))) 2371 '((t (:bold t :foreground "DeepPink1")))
2406 "Face used to highlight a bad PGG signature." 2372 "Face used to highlight a bad PGG signature."
2407 :group 'mh-show-faces) 2373 :group 'mh-show-faces)
2408;; backward-compatibility alias
2409(put 'mh-show-pgg-bad-face 'face-alias 'mh-show-pgg-bad)
2410 2374
2411(defface mh-show-signature 2375(defface mh-show-signature
2412 '((t (:italic t))) 2376 '((t (:italic t)))
2413 "Face used to highlight the message signature." 2377 "Face used to highlight the message signature."
2414 :group 'mh-show-faces) 2378 :group 'mh-show-faces)
2415;; backward-compatibility alias
2416(put 'mh-show-signature-face 'face-alias 'mh-show-signature)
2417 2379
2418(defvar mh-show-to-face 'mh-show-to 2380(defvar mh-show-to-face 'mh-show-to
2419 "Face used to highlight the To: header field.") 2381 "Face used to highlight the To: header field.")
@@ -2429,8 +2391,6 @@ This face is also used for a signature when the signer is untrusted."
2429 (t (:underline t))) 2391 (t (:underline t)))
2430 "Face used to highlight the To: header field." 2392 "Face used to highlight the To: header field."
2431 :group 'mh-show-faces) 2393 :group 'mh-show-faces)
2432;; backward-compatibility alias
2433(put 'mh-show-to-face 'face-alias 'mh-show-to)
2434 2394
2435(defvar mh-show-from-face 'mh-show-from 2395(defvar mh-show-from-face 'mh-show-from
2436 "Face used to highlight the From: header field.") 2396 "Face used to highlight the From: header field.")
@@ -2443,16 +2403,12 @@ This face is also used for a signature when the signer is untrusted."
2443 (:bold t))) 2403 (:bold t)))
2444 "Face used to highlight the From: header field." 2404 "Face used to highlight the From: header field."
2445 :group 'mh-show-faces) 2405 :group 'mh-show-faces)
2446;; backward-compatibility alias
2447(put 'mh-show-from-face 'face-alias 'mh-show-from)
2448 2406
2449(defface mh-show-xface 2407(defface mh-show-xface
2450 '((t (:foreground "black" :background "white"))) 2408 '((t (:foreground "black" :background "white")))
2451 "Face used to display the X-Face image. 2409 "Face used to display the X-Face image.
2452The background and foreground is used in the image." 2410The background and foreground is used in the image."
2453 :group 'mh-show-faces) 2411 :group 'mh-show-faces)
2454;; backward-compatibility alias
2455(put 'mh-show-xface-face 'face-alias 'mh-show-xface)
2456 2412
2457(defvar mh-show-subject-face 'mh-show-subject 2413(defvar mh-show-subject-face 'mh-show-subject
2458 "Face used to highlight the Subject: header field.") 2414 "Face used to highlight the Subject: header field.")
@@ -2469,8 +2425,6 @@ The background and foreground is used in the image."
2469 (:foreground "light blue"))) 2425 (:foreground "light blue")))
2470 "Face used for folders in the speedbar buffer." 2426 "Face used for folders in the speedbar buffer."
2471 :group 'mh-speed-faces) 2427 :group 'mh-speed-faces)
2472;; backward-compatibility alias
2473(put 'mh-speedbar-folder-face 'face-alias 'mh-speedbar-folder)
2474 2428
2475(defface mh-speedbar-selected-folder 2429(defface mh-speedbar-selected-folder
2476 '((((class color) (background light)) 2430 '((((class color) (background light))
@@ -2480,22 +2434,16 @@ The background and foreground is used in the image."
2480 (t (:underline t))) 2434 (t (:underline t)))
2481 "Face used for the current folder." 2435 "Face used for the current folder."
2482 :group 'mh-speed-faces) 2436 :group 'mh-speed-faces)
2483;; backward-compatibility alias
2484(put 'mh-speedbar-selected-folder-face 'face-alias 'mh-speedbar-selected-folder)
2485 2437
2486(defface mh-speedbar-folder-with-unseen-messages 2438(defface mh-speedbar-folder-with-unseen-messages
2487 '((t (:inherit mh-speedbar-folder :bold t))) 2439 '((t (:inherit mh-speedbar-folder :bold t)))
2488 "Face used for folders in the speedbar buffer which have unread messages." 2440 "Face used for folders in the speedbar buffer which have unread messages."
2489 :group 'mh-speed-faces) 2441 :group 'mh-speed-faces)
2490;; backward-compatibility alias
2491(put 'mh-speedbar-folder-with-unseen-messages-face 'face-alias 'mh-speedbar-folder-with-unseen-messages)
2492 2442
2493(defface mh-speedbar-selected-folder-with-unseen-messages 2443(defface mh-speedbar-selected-folder-with-unseen-messages
2494 '((t (:inherit mh-speedbar-selected-folder :bold t))) 2444 '((t (:inherit mh-speedbar-selected-folder :bold t)))
2495 "Face used for the current folder when it has unread messages." 2445 "Face used for the current folder when it has unread messages."
2496 :group 'mh-speed-faces) 2446 :group 'mh-speed-faces)
2497;; backward-compatibility alias
2498(put 'mh-speedbar-selected-folder-with-unseen-messages-face 'face-alias 'mh-speedbar-selected-folder-with-unseen-messages)
2499 2447
2500;;; Local Variables: 2448;;; Local Variables:
2501;;; indent-tabs-mode: nil 2449;;; indent-tabs-mode: nil
diff --git a/lisp/play/gomoku.el b/lisp/play/gomoku.el
index 5a53b4b888e..e9f7a07abe9 100644
--- a/lisp/play/gomoku.el
+++ b/lisp/play/gomoku.el
@@ -165,15 +165,11 @@ One useful value to include is `turn-on-font-lock' to highlight the pieces."
165 '((((class color)) (:foreground "red" :weight bold))) 165 '((((class color)) (:foreground "red" :weight bold)))
166 "Face to use for Emacs' O." 166 "Face to use for Emacs' O."
167 :group 'gomoku) 167 :group 'gomoku)
168;; backward-compatibility alias
169(put 'gomoku-font-lock-O-face 'face-alias 'gomoku-O)
170 168
171(defface gomoku-X 169(defface gomoku-X
172 '((((class color)) (:foreground "green" :weight bold))) 170 '((((class color)) (:foreground "green" :weight bold)))
173 "Face to use for your X." 171 "Face to use for your X."
174 :group 'gomoku) 172 :group 'gomoku)
175;; backward-compatibility alias
176(put 'gomoku-font-lock-X-face 'face-alias 'gomoku-X)
177 173
178(defvar gomoku-font-lock-keywords 174(defvar gomoku-font-lock-keywords
179 '(("O" . 'gomoku-O) 175 '(("O" . 'gomoku-O)
diff --git a/lisp/play/mpuz.el b/lisp/play/mpuz.el
index cc252a08719..948ae126ffa 100644
--- a/lisp/play/mpuz.el
+++ b/lisp/play/mpuz.el
@@ -62,31 +62,23 @@ t means never ding, and `error' means only ding on wrong input."
62 (t (:bold t))) 62 (t (:bold t)))
63 "*Face to use for letters to be solved." 63 "*Face to use for letters to be solved."
64 :group 'mpuz) 64 :group 'mpuz)
65;; backward-compatibility alias
66(put 'mpuz-unsolved-face 'face-alias 'mpuz-unsolved)
67 65
68(defface mpuz-solved 66(defface mpuz-solved
69 '((((class color)) (:foreground "green1" :bold t)) 67 '((((class color)) (:foreground "green1" :bold t))
70 (t (:bold t))) 68 (t (:bold t)))
71 "*Face to use for solved digits." 69 "*Face to use for solved digits."
72 :group 'mpuz) 70 :group 'mpuz)
73;; backward-compatibility alias
74(put 'mpuz-solved-face 'face-alias 'mpuz-solved)
75 71
76(defface mpuz-trivial 72(defface mpuz-trivial
77 '((((class color)) (:foreground "blue" :bold t)) 73 '((((class color)) (:foreground "blue" :bold t))
78 (t (:bold t))) 74 (t (:bold t)))
79 "*Face to use for trivial digits solved for you." 75 "*Face to use for trivial digits solved for you."
80 :group 'mpuz) 76 :group 'mpuz)
81;; backward-compatibility alias
82(put 'mpuz-trivial-face 'face-alias 'mpuz-trivial)
83 77
84(defface mpuz-text 78(defface mpuz-text
85 '((t (:inherit variable-pitch))) 79 '((t (:inherit variable-pitch)))
86 "*Face to use for text on right." 80 "*Face to use for text on right."
87 :group 'mpuz) 81 :group 'mpuz)
88;; backward-compatibility alias
89(put 'mpuz-text-face 'face-alias 'mpuz-text)
90 82
91 83
92;; Mpuz mode and keymaps 84;; Mpuz mode and keymaps
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index 0c299e5678c..253a420da2e 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -484,8 +484,6 @@ starting the compilation process.")
484 "Face used to highlight compiler warnings." 484 "Face used to highlight compiler warnings."
485 :group 'font-lock-highlighting-faces 485 :group 'font-lock-highlighting-faces
486 :version "22.1") 486 :version "22.1")
487;; backward-compatibility alias
488(put 'compilation-warning-face 'face-alias 'compilation-warning)
489 487
490(defface compilation-info 488(defface compilation-info
491 '((((class color) (min-colors 16) (background light)) 489 '((((class color) (min-colors 16) (background light))
@@ -499,8 +497,6 @@ starting the compilation process.")
499 "Face used to highlight compiler information." 497 "Face used to highlight compiler information."
500 :group 'font-lock-highlighting-faces 498 :group 'font-lock-highlighting-faces
501 :version "22.1") 499 :version "22.1")
502;; backward-compatibility alias
503(put 'compilation-info-face 'face-alias 'compilation-info)
504 500
505(defface compilation-line-number 501(defface compilation-line-number
506 '((t :inherit font-lock-variable-name-face)) 502 '((t :inherit font-lock-variable-name-face))
diff --git a/lisp/progmodes/flymake.el b/lisp/progmodes/flymake.el
index a698ee6322f..8854d57915c 100644
--- a/lisp/progmodes/flymake.el
+++ b/lisp/progmodes/flymake.el
@@ -858,16 +858,12 @@ Return t if it has at least one flymake overlay, nil if no overlay."
858 (t (:bold t))) 858 (t (:bold t)))
859 "Face used for marking error lines." 859 "Face used for marking error lines."
860 :group 'flymake) 860 :group 'flymake)
861;; backward-compatibility alias
862(put 'flymake-errline-face 'face-alias 'flymake-errline)
863 861
864(defface flymake-warnline 862(defface flymake-warnline
865 '((((class color)) (:background "LightBlue2")) 863 '((((class color)) (:background "LightBlue2"))
866 (t (:bold t))) 864 (t (:bold t)))
867 "Face used for marking warning lines." 865 "Face used for marking warning lines."
868 :group 'flymake) 866 :group 'flymake)
869;; backward-compatibility alias
870(put 'flymake-warnline-face 'face-alias 'flymake-warnline)
871 867
872(defun flymake-highlight-line (line-no line-err-info-list) 868(defun flymake-highlight-line (line-no line-err-info-list)
873 "Highlight line LINE-NO in current buffer. 869 "Highlight line LINE-NO in current buffer.
diff --git a/lisp/progmodes/gdb-ui.el b/lisp/progmodes/gdb-ui.el
index 42e415c5799..2f350b2d3e7 100644
--- a/lisp/progmodes/gdb-ui.el
+++ b/lisp/progmodes/gdb-ui.el
@@ -1307,8 +1307,6 @@ static char *magick[] = {
1307 (((background light)) :foreground "grey40")) 1307 (((background light)) :foreground "grey40"))
1308 "Face for disabled breakpoint icon in fringe." 1308 "Face for disabled breakpoint icon in fringe."
1309 :group 'gud) 1309 :group 'gud)
1310;; Compatibility alias for old name.
1311(put 'breakpoint-disabled-bitmap-face 'face-alias 'breakpoint-disabled)
1312 1310
1313;; Put breakpoint icons in relevant margins (even those set in the GUD buffer). 1311;; Put breakpoint icons in relevant margins (even those set in the GUD buffer).
1314(defun gdb-info-breakpoints-custom () 1312(defun gdb-info-breakpoints-custom ()
diff --git a/lisp/progmodes/idlw-help.el b/lisp/progmodes/idlw-help.el
index 6dbbca4c5b1..8c43831ebac 100644
--- a/lisp/progmodes/idlw-help.el
+++ b/lisp/progmodes/idlw-help.el
@@ -193,8 +193,6 @@ support."
193 (t (:weight bold))) 193 (t (:weight bold)))
194 "Face for highlighting links into IDLWAVE online help." 194 "Face for highlighting links into IDLWAVE online help."
195 :group 'idlwave-online-help) 195 :group 'idlwave-online-help)
196;; backward-compatibility alias
197(put 'idlwave-help-link-face 'face-alias 'idlwave-help-link)
198 196
199(defvar idlwave-help-activate-links-aggressively nil 197(defvar idlwave-help-activate-links-aggressively nil
200 "Obsolete variable.") 198 "Obsolete variable.")
diff --git a/lisp/progmodes/idlw-shell.el b/lisp/progmodes/idlw-shell.el
index 3d6076cd52d..cc706195cc2 100644
--- a/lisp/progmodes/idlw-shell.el
+++ b/lisp/progmodes/idlw-shell.el
@@ -533,9 +533,7 @@ lines which have a breakpoint. See also `idlwave-shell-mark-breakpoints'."
533 '((((class color)) (:foreground "Black" :background "Pink")) 533 '((((class color)) (:foreground "Black" :background "Pink"))
534 (t (:underline t))) 534 (t (:underline t)))
535 "Face for highlighting lines with breakpoints." 535 "Face for highlighting lines with breakpoints."
536 :group 'idlwave-shell-highlighting-and-faces) 536 :group 'idlwave-shell-highlighting-and-faces))
537 ;; backward-compatibility alias
538 (put 'idlwave-shell-bp-face 'face-alias 'idlwave-shell-bp))
539 537
540(defcustom idlwave-shell-disabled-breakpoint-face 538(defcustom idlwave-shell-disabled-breakpoint-face
541 'idlwave-shell-disabled-bp 539 'idlwave-shell-disabled-bp
@@ -553,10 +551,7 @@ lines which have a breakpoint. See also `idlwave-shell-mark-breakpoints'."
553 '((((class color)) (:foreground "Black" :background "gray")) 551 '((((class color)) (:foreground "Black" :background "gray"))
554 (t (:underline t))) 552 (t (:underline t)))
555 "Face for highlighting lines with breakpoints." 553 "Face for highlighting lines with breakpoints."
556 :group 'idlwave-shell-highlighting-and-faces) 554 :group 'idlwave-shell-highlighting-and-faces))
557 ;; backward-compatibility alias
558 (put 'idlwave-shell-disabled-bp-face 'face-alias 'idlwave-shell-disabled-bp))
559
560 555
561(defcustom idlwave-shell-expression-face 'secondary-selection 556(defcustom idlwave-shell-expression-face 'secondary-selection
562 "*The face for `idlwave-shell-expression-overlay'. 557 "*The face for `idlwave-shell-expression-overlay'.
diff --git a/lisp/progmodes/ld-script.el b/lisp/progmodes/ld-script.el
index 8b378b7f0ab..a2449b6817e 100644
--- a/lisp/progmodes/ld-script.el
+++ b/lisp/progmodes/ld-script.el
@@ -39,8 +39,6 @@
39 '((t (:weight bold :inherit font-lock-builtin-face))) 39 '((t (:weight bold :inherit font-lock-builtin-face)))
40 "Face for location counter in GNU ld script." 40 "Face for location counter in GNU ld script."
41 :group 'ld-script) 41 :group 'ld-script)
42;; backward-compatibility alias
43(put 'ld-script-location-counter-face 'face-alias 'ld-script-location-counter)
44 42
45;; Syntax rules 43;; Syntax rules
46(defvar ld-script-mode-syntax-table 44(defvar ld-script-mode-syntax-table
diff --git a/lisp/progmodes/which-func.el b/lisp/progmodes/which-func.el
index c1bfc140d84..66d91dce3da 100644
--- a/lisp/progmodes/which-func.el
+++ b/lisp/progmodes/which-func.el
@@ -139,8 +139,6 @@ Zero means compute the Imenu menu regardless of size."
139 :foreground "LightSkyBlue")) 139 :foreground "LightSkyBlue"))
140 "Face used to highlight mode line function names." 140 "Face used to highlight mode line function names."
141 :group 'which-func) 141 :group 'which-func)
142;; backward-compatibility alias
143(put 'which-func-face 'face-alias 'which-func)
144 142
145(defcustom which-func-format 143(defcustom which-func-format
146 `("[" 144 `("["
diff --git a/lisp/ruler-mode.el b/lisp/ruler-mode.el
index 783e511d0b2..4763072a424 100644
--- a/lisp/ruler-mode.el
+++ b/lisp/ruler-mode.el
@@ -221,8 +221,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
221 ))) 221 )))
222 "Default face used by the ruler." 222 "Default face used by the ruler."
223 :group 'ruler-mode) 223 :group 'ruler-mode)
224;; backward-compatibility alias
225(put 'ruler-mode-default-face 'face-alias 'ruler-mode-default)
226 224
227(defface ruler-mode-pad 225(defface ruler-mode-pad
228 '((((type tty)) 226 '((((type tty))
@@ -235,8 +233,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
235 ))) 233 )))
236 "Face used to pad inactive ruler areas." 234 "Face used to pad inactive ruler areas."
237 :group 'ruler-mode) 235 :group 'ruler-mode)
238;; backward-compatibility alias
239(put 'ruler-mode-pad-face 'face-alias 'ruler-mode-pad)
240 236
241(defface ruler-mode-margins 237(defface ruler-mode-margins
242 '((t 238 '((t
@@ -245,8 +241,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
245 ))) 241 )))
246 "Face used to highlight margin areas." 242 "Face used to highlight margin areas."
247 :group 'ruler-mode) 243 :group 'ruler-mode)
248;; backward-compatibility alias
249(put 'ruler-mode-margins-face 'face-alias 'ruler-mode-margins)
250 244
251(defface ruler-mode-fringes 245(defface ruler-mode-fringes
252 '((t 246 '((t
@@ -255,8 +249,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
255 ))) 249 )))
256 "Face used to highlight fringes areas." 250 "Face used to highlight fringes areas."
257 :group 'ruler-mode) 251 :group 'ruler-mode)
258;; backward-compatibility alias
259(put 'ruler-mode-fringes-face 'face-alias 'ruler-mode-fringes)
260 252
261(defface ruler-mode-column-number 253(defface ruler-mode-column-number
262 '((t 254 '((t
@@ -265,8 +257,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
265 ))) 257 )))
266 "Face used to highlight number graduations." 258 "Face used to highlight number graduations."
267 :group 'ruler-mode) 259 :group 'ruler-mode)
268;; backward-compatibility alias
269(put 'ruler-mode-column-number-face 'face-alias 'ruler-mode-column-number)
270 260
271(defface ruler-mode-fill-column 261(defface ruler-mode-fill-column
272 '((t 262 '((t
@@ -275,8 +265,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
275 ))) 265 )))
276 "Face used to highlight the fill column character." 266 "Face used to highlight the fill column character."
277 :group 'ruler-mode) 267 :group 'ruler-mode)
278;; backward-compatibility alias
279(put 'ruler-mode-fill-column-face 'face-alias 'ruler-mode-fill-column)
280 268
281(defface ruler-mode-comment-column 269(defface ruler-mode-comment-column
282 '((t 270 '((t
@@ -285,8 +273,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
285 ))) 273 )))
286 "Face used to highlight the comment column character." 274 "Face used to highlight the comment column character."
287 :group 'ruler-mode) 275 :group 'ruler-mode)
288;; backward-compatibility alias
289(put 'ruler-mode-comment-column-face 'face-alias 'ruler-mode-comment-column)
290 276
291(defface ruler-mode-goal-column 277(defface ruler-mode-goal-column
292 '((t 278 '((t
@@ -295,8 +281,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
295 ))) 281 )))
296 "Face used to highlight the goal column character." 282 "Face used to highlight the goal column character."
297 :group 'ruler-mode) 283 :group 'ruler-mode)
298;; backward-compatibility alias
299(put 'ruler-mode-goal-column-face 'face-alias 'ruler-mode-goal-column)
300 284
301(defface ruler-mode-tab-stop 285(defface ruler-mode-tab-stop
302 '((t 286 '((t
@@ -305,8 +289,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
305 ))) 289 )))
306 "Face used to highlight tab stop characters." 290 "Face used to highlight tab stop characters."
307 :group 'ruler-mode) 291 :group 'ruler-mode)
308;; backward-compatibility alias
309(put 'ruler-mode-tab-stop-face 'face-alias 'ruler-mode-tab-stop)
310 292
311(defface ruler-mode-current-column 293(defface ruler-mode-current-column
312 '((t 294 '((t
@@ -316,8 +298,6 @@ or remove a tab stop. \\[ruler-mode-toggle-show-tab-stops] or
316 ))) 298 )))
317 "Face used to highlight the `current-column' character." 299 "Face used to highlight the `current-column' character."
318 :group 'ruler-mode) 300 :group 'ruler-mode)
319;; backward-compatibility alias
320(put 'ruler-mode-current-column-face 'face-alias 'ruler-mode-current-column)
321 301
322 302
323(defsubst ruler-mode-full-window-width () 303(defsubst ruler-mode-full-window-width ()
diff --git a/lisp/strokes.el b/lisp/strokes.el
index 925ef360254..a432191b18a 100644
--- a/lisp/strokes.el
+++ b/lisp/strokes.el
@@ -1424,8 +1424,6 @@ Encode/decode your strokes with \\[strokes-encode-buffer],
1424 "Face for strokes characters." 1424 "Face for strokes characters."
1425 :version "21.1" 1425 :version "21.1"
1426 :group 'strokes) 1426 :group 'strokes)
1427;; backward-compatibility alias
1428(put 'strokes-char-face 'face-alias 'strokes-char)
1429 1427
1430(put 'strokes 'char-table-extra-slots 0) 1428(put 'strokes 'char-table-extra-slots 0)
1431(defconst strokes-char-table (make-char-table 'strokes) ; 1429(defconst strokes-char-table (make-char-table 'strokes) ;
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index 7b5e2c520a1..1c43ce39ce6 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -252,8 +252,6 @@ Any terminating `>' or `/' is not matched.")
252 '((t (:inherit font-lock-builtin-face))) 252 '((t (:inherit font-lock-builtin-face)))
253 "`sgml-mode' face used to highlight the namespace part of identifiers." 253 "`sgml-mode' face used to highlight the namespace part of identifiers."
254 :group 'sgml) 254 :group 'sgml)
255;; backward-compatibility alias
256(put 'sgml-namespace-face 'face-alias 'sgml-namespace)
257(defvar sgml-namespace-face 'sgml-namespace) 255(defvar sgml-namespace-face 'sgml-namespace)
258 256
259;; internal 257;; internal
diff --git a/lisp/textmodes/table.el b/lisp/textmodes/table.el
index f0cde251504..f45bcde6684 100644
--- a/lisp/textmodes/table.el
+++ b/lisp/textmodes/table.el
@@ -691,8 +691,6 @@ height."
691 "*Face used for table cell contents." 691 "*Face used for table cell contents."
692 :tag "Cell Face" 692 :tag "Cell Face"
693 :group 'table) 693 :group 'table)
694;; backward-compatibility alias
695(put 'table-cell-face 'face-alias 'table-cell)
696 694
697(defcustom table-cell-horizontal-chars "-=" 695(defcustom table-cell-horizontal-chars "-="
698 "*Characters that may be used for table cell's horizontal border line." 696 "*Characters that may be used for table cell's horizontal border line."