Variable: pr-menu-entry-alist

pr-menu-entry-alist is a variable defined in printing.el.gz.

Value

((postscript . 3)
 (text . 3)
 (postscript-options . 9)
 (postscript-process . 3)
 (printing . 3)
 (help . 3))

Documentation

Alist that associates menu part with number of items per part.

It's used by pr-menu-index.

Each element has the form:

   (MENU-PART . NUMBER-OF-ITEMS)

See pr-visible-entry-list.

Source Code

;; Defined in /usr/src/emacs/lisp/printing.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Menu Lock


(defconst pr-menu-entry-alist
  '((postscript         . 3)
    (text               . 3)
    (postscript-options . 9)
    (postscript-process . 3)
    (printing           . 3)
    (help               . 3)
    )
  "Alist that associates menu part with number of items per part.

It's used by `pr-menu-index'.

Each element has the form:

   (MENU-PART . NUMBER-OF-ITEMS)

See `pr-visible-entry-list'.")