emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/help-fns.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/help-fns.el [lexbind]
Date: Tue, 06 Jul 2004 05:57:20 -0400

Index: emacs/lisp/help-fns.el
diff -c emacs/lisp/help-fns.el:1.9.2.11 emacs/lisp/help-fns.el:1.9.2.12
*** emacs/lisp/help-fns.el:1.9.2.11     Tue Jul  6 09:23:42 2004
--- emacs/lisp/help-fns.el      Tue Jul  6 09:42:25 2004
***************
*** 239,252 ****
            (concat "src/" file)
          file)))))
  
  (defun help-default-arg-highlight (arg)
    "Default function to highlight arguments in *Help* buffers.
! It returns ARG in lowercase italics, if the display supports it;
! else ARG is returned in uppercase normal."
!   (let ((attrs '(:slant italic)))
!     (if (display-supports-face-attributes-p attrs)
!         (propertize (downcase arg) 'face attrs)
!       arg)))
  
  (defun help-do-arg-highlight (doc args)
    (with-syntax-table (make-syntax-table emacs-lisp-mode-syntax-table)
--- 239,257 ----
            (concat "src/" file)
          file)))))
  
+ ;;;###autoload
+ (defface help-argument-name '((((supports :slant italic)) :inherit italic))
+   "Face to highlight argument names in *Help* buffers.")
+ 
  (defun help-default-arg-highlight (arg)
    "Default function to highlight arguments in *Help* buffers.
! It returns ARG in face `help-argument-name'; ARG is also
! downcased if it displays differently than the default
! face (according to `face-differs-from-default-p')."
!   (propertize (if (face-differs-from-default-p 'help-argument-name)
!                   (downcase arg)
!                 arg)
!               'face 'help-argument-name))
  
  (defun help-do-arg-highlight (doc args)
    (with-syntax-table (make-syntax-table emacs-lisp-mode-syntax-table)




reply via email to

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