emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/faces.el


From: Juanma Barranquero
Subject: [Emacs-diffs] Changes to emacs/lisp/faces.el
Date: Wed, 01 Jun 2005 06:42:50 -0400

Index: emacs/lisp/faces.el
diff -c emacs/lisp/faces.el:1.310 emacs/lisp/faces.el:1.311
*** emacs/lisp/faces.el:1.310   Tue May 31 11:10:43 2005
--- emacs/lisp/faces.el Wed Jun  1 10:42:47 2005
***************
*** 183,192 ****
  If the optional argument FRAME is given, this gets the face NAME for
  that frame; otherwise, it uses the selected frame.
  If FRAME is the symbol t, then the global, non-frame face is returned.
! If NAME is already a face, it is simply returned.
! 
! This function is defined for compatibility with Emacs 20.2.  It
! should not be used anymore."
    (facep name))
  (make-obsolete 'internal-find-face 'facep "21.1")
  
--- 183,189 ----
  If the optional argument FRAME is given, this gets the face NAME for
  that frame; otherwise, it uses the selected frame.
  If FRAME is the symbol t, then the global, non-frame face is returned.
! If NAME is already a face, it is simply returned."
    (facep name))
  (make-obsolete 'internal-find-face 'facep "21.1")
  
***************
*** 1154,1171 ****
  arg, prompt for a regular expression."
    (interactive (list (and current-prefix-arg
                            (read-string "List faces matching regexp: "))))
!   (let ((faces (sort (face-list) #'string-lessp))
        (frame (selected-frame))
        disp-frame window face-name)
!     (when (> (length regexp) 0)
!       (setq faces
!             (delq nil
!                   (mapcar (lambda (f)
!                             (when (string-match regexp (symbol-name f))
!                               f))
!                           faces)))
!       (unless faces
!         (error "No faces matching \"%s\"" regexp)))
      (with-output-to-temp-buffer "*Faces*"
        (save-excursion
        (set-buffer standard-output)
--- 1151,1174 ----
  arg, prompt for a regular expression."
    (interactive (list (and current-prefix-arg
                            (read-string "List faces matching regexp: "))))
!   (let ((all-faces (zerop (length regexp)))
        (frame (selected-frame))
+       (max-length 0)
+       faces line-format
        disp-frame window face-name)
!     ;; We filter and take the max length in one pass
!     (setq faces
!         (delq nil
!               (mapcar (lambda (f)
!                         (let ((s (symbol-name f)))
!                           (when (or all-faces (string-match regexp s))
!                             (setq max-length (max (length s) max-length))
!                             f)))
!                       (sort (face-list) #'string-lessp))))
!     (unless faces
!       (error "No faces matching \"%s\"" regexp))
!     (setq max-length (1+ max-length)
!         line-format (format "%%-%ds" max-length))
      (with-output-to-temp-buffer "*Faces*"
        (save-excursion
        (set-buffer standard-output)
***************
*** 1180,1186 ****
        (setq help-xref-stack nil)
        (dolist (face faces)
          (setq face-name (symbol-name face))
!         (insert (format "%25s " face-name))
          ;; Hyperlink to a customization buffer for the face.  Using
          ;; the help xref mechanism may not be the best way.
          (save-excursion
--- 1183,1189 ----
        (setq help-xref-stack nil)
        (dolist (face faces)
          (setq face-name (symbol-name face))
!         (insert (format line-format face-name))
          ;; Hyperlink to a customization buffer for the face.  Using
          ;; the help xref mechanism may not be the best way.
          (save-excursion
***************
*** 1205,1211 ****
            (goto-char beg)
            (forward-line 1)
            (while (not (eobp))
!             (insert "                          ")
              (forward-line 1))))
        (goto-char (point-min)))
        (print-help-return-message))
--- 1208,1214 ----
            (goto-char beg)
            (forward-line 1)
            (while (not (eobp))
!             (insert-char ?\s max-length)
              (forward-line 1))))
        (goto-char (point-min)))
        (print-help-return-message))




reply via email to

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