emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/idlw-help.el


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/idlw-help.el
Date: Tue, 14 Jun 2005 19:20:56 -0400

Index: emacs/lisp/progmodes/idlw-help.el
diff -c emacs/lisp/progmodes/idlw-help.el:1.5 
emacs/lisp/progmodes/idlw-help.el:1.6
*** emacs/lisp/progmodes/idlw-help.el:1.5       Thu May 26 16:39:27 2005
--- emacs/lisp/progmodes/idlw-help.el   Tue Jun 14 23:20:55 2005
***************
*** 182,193 ****
    :group 'idlwave-online-help
    :type 'string)
  
! (defface idlwave-help-link-face
    '((((min-colors 88) (class color)) (:foreground "Blue1"))
      (((class color)) (:foreground "Blue"))
      (t (:weight bold)))
    "Face for highlighting links into IDLWAVE online help."
    :group 'idlwave-online-help)
  
  (defvar idlwave-help-activate-links-aggressively nil
    "Obsolete variable.")
--- 182,195 ----
    :group 'idlwave-online-help
    :type 'string)
  
! (defface idlwave-help-link
    '((((min-colors 88) (class color)) (:foreground "Blue1"))
      (((class color)) (:foreground "Blue"))
      (t (:weight bold)))
    "Face for highlighting links into IDLWAVE online help."
    :group 'idlwave-online-help)
+ ;; backward-compatibility alias
+ (put 'idlwave-help-link-face 'face-alias 'idlwave-help-link)
  
  (defvar idlwave-help-activate-links-aggressively nil
    "Obsolete variable.")
***************
*** 586,597 ****
  (defun idlwave-highlight-linked-completions ()
    "Highlight all completions for which help is available and attach link.
  Those words in `idlwave-completion-help-links' have links.  The
! `idlwave-help-link-face' face is used for this."
    (if idlwave-highlight-help-links-in-completion
        (with-current-buffer (get-buffer "*Completions*")
        (save-excursion
          (let* ((case-fold-search t)
!                (props (list 'face 'idlwave-help-link-face))
                 (info idlwave-completion-help-info) ; global passed in
                 (what (nth 0 info))  ; what was completed, or a func
                 (class (nth 3 info)) ; any class
--- 588,599 ----
  (defun idlwave-highlight-linked-completions ()
    "Highlight all completions for which help is available and attach link.
  Those words in `idlwave-completion-help-links' have links.  The
! `idlwave-help-link' face is used for this."
    (if idlwave-highlight-help-links-in-completion
        (with-current-buffer (get-buffer "*Completions*")
        (save-excursion
          (let* ((case-fold-search t)
!                (props (list 'face 'idlwave-help-link))
                 (info idlwave-completion-help-info) ; global passed in
                 (what (nth 0 info))  ; what was completed, or a func
                 (class (nth 3 info)) ; any class




reply via email to

[Prev in Thread] Current Thread [Next in Thread]