comparison lisp/isearch.el @ 104778:afa0e028ba97

Mark face aliases with "-face" suffix as obsolete.
author Glenn Morris <rgm@gnu.org>
date Tue, 01 Sep 2009 07:24:13 +0000
parents 3223937a77f8
children add40a32098b
comparison
equal deleted inserted replaced
104777:537e1db33ebf 104778:afa0e028ba97
1 ;;; isearch.el --- incremental search minor mode 1 ;;; isearch.el --- incremental search minor mode
2 2
3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 3 ;; Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1999, 2000, 2001,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 4 ;; 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
5 ;; Free Software Foundation, Inc. 5 ;; Free Software Foundation, Inc.
6 6
7 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu> 7 ;; Author: Daniel LaLiberte <liberte@cs.uiuc.edu>
8 ;; Maintainer: FSF 8 ;; Maintainer: FSF
9 ;; Keywords: matching 9 ;; Keywords: matching
320 (:background "turquoise3")) 320 (:background "turquoise3"))
321 (t (:underline t))) 321 (t (:underline t)))
322 "Face for lazy highlighting of matches other than the current one." 322 "Face for lazy highlighting of matches other than the current one."
323 :group 'lazy-highlight 323 :group 'lazy-highlight
324 :group 'basic-faces) 324 :group 'basic-faces)
325 (put 'isearch-lazy-highlight-face 'face-alias 'lazy-highlight) 325 (define-obsolete-face-alias 'isearch-lazy-highlight-face 'lazy-highlight "22.1")
326 (defvar lazy-highlight-face 'lazy-highlight) 326 (defvar lazy-highlight-face 'lazy-highlight)
327 (define-obsolete-variable-alias 'isearch-lazy-highlight-face 327 (define-obsolete-variable-alias 'isearch-lazy-highlight-face
328 'lazy-highlight-face 328 'lazy-highlight-face
329 "22.1") 329 "22.1")
330 330