• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/emacs-92/emacs/lisp/

Lines Matching +defs:gnus +defs:info

876 ;; `ps-font-info-database' contains information for a list of font families
937 ;; its information to `ps-font-info-database', otherwise ps-print cannot
957 ;; - Add these values to the `ps-font-info-database':
958 ;; (setq ps-font-info-database
969 ;; ps-font-info-database))
975 ;; (setq ps-font-info-database (append ...)))
977 ;; (setq ps-font-info-database '(<your stuff> <the standard stuff>))
981 ;; (or (assq 'Helvetica ps-font-info-database)
982 ;; (setq ps-font-info-database (append ...)))))
1028 ;; Anyway, as ghostscript fonts are autoload, you won't get much font info.
2708 (defcustom ps-font-info-database
2820 "*Font info database.
2823 To get the info for another specific font (say Helvetica), do the following:
2831 - add the values to `ps-font-info-database'.
3703 ;; ps-font-info-database
4486 (let ((font-entry (cdr (assq font-family ps-font-info-database))))
4490 (mapcar 'car ps-font-info-database)))
5721 (let ((font-entry (cdr (assq ps-font-family ps-font-info-database))))
6862 ;; See `ps-gnus-print-article-from-summary'. This function does the
6869 ;; `ps-gnus-print-article-from-summary' and `ps-vm-print-message-from-summary'.
6913 ;; A hook to bind to `gnus-article-prepare-hook'. This will set the
6914 ;; `ps-left-headers' specially for gnus articles. Unfortunately,
6915 ;; `gnus-article-mode-hook' is called only once, the first time the *Article*
6917 ;; we ran gnus. The second time, this hook wouldn't get set up. The
6918 ;; only alternative is `gnus-article-prepare-hook'.
6919 (defun ps-gnus-article-prepare-hook ()
6924 '(ps-article-subject ps-article-author gnus-newsgroup-name)))
6939 ;; prsc for the gnus *Summary* buffer means I don't have to switch
6942 (defun ps-gnus-print-article-from-summary ()
6944 (ps-print-message-from-summary 'gnus-article-buffer "*Article*"))
6946 ;; See `ps-gnus-print-article-from-summary'. This function does the
6952 ;; A hook to bind to bind to `gnus-summary-setup-buffer' to locally bind
6954 (defun ps-gnus-summary-setup ()
6955 (local-set-key [(f22)] 'ps-gnus-print-article-from-summary))
6959 (defun ps-info-file ()
6968 (defun ps-info-node ()
6975 (defun ps-info-mode-hook ()
6978 '(ps-info-node ps-info-file)))
6990 (add-hook 'gnus-article-prepare-hook 'ps-gnus-article-prepare-hook)
6991 (add-hook 'gnus-summary-mode-hook 'ps-gnus-summary-setup)
6994 (add-hook 'Info-mode-hook 'ps-info-mode-hook)