annotate src/=x11term.h @ 19773:24853e0e38d6
Some comment and doc fixes.
(ps-print-version): New version number (3.05.1).
(ps-adobe-tag): Replace defvar by defcustom, and doc fix.
(ps-print-with-faces, ps-print-without-faces)
(ps-spool-with-faces, ps-spool-without-faces): Add arg REGION-P.
(ps-print-region-with-faces, ps-print-region)
(ps-spool-region, ps-spool-region-with-faces): Fix calls to
the functions above.
(ps-setup): Print value of ps-zebra-stripe, ps-number-of-zebra,
ps-line-number, ps-print-background-image,
and ps-print-background-text.
(ps-print-prologue-1): Bug fix in PostScript programming:
/BeginDSCPage, /BeginPage.
(ps-showpage-count, ps-ref-bold-faces, ps-ref-italic-faces)
(ps-ref-underlined-faces, font-lock-face-attributes)
(ps-initialize-faces): Vars deleted.
(ps-override-list, ps-extension-to-bit-face)
(ps-extension-to-screen-face, ps-initialize-faces, ps-header-height)
(ps-hard-lf, ps-soft-lf, ps-get-face, ps-map-font-lock): Fn deleted.
(ps-extend-face-list, ps-extend-face): Doc fix.
(ps-print-face-alist): New var to handle face alist.
(ps-printing-region): New var and fn.
(ps-header-page, ps-set-face-bold, ps-set-face-italic)
(ps-set-face-underline, ps-set-face-attribute, ps-map-face): New fn.
(ps-rmail-mode-hook, ps-rmail-print-message-from-summary)
(ps-print-message-from-summary, ps-vm-print-message-from-summary):
Fns moved.
(ps-background): New argument PAGE-NUMBER.
(ps-begin-file): Bug fix and print proper line number in a region.
(ps-begin-page): Call ps-header-page.
(ps-get-buffer-name): Indicates in the header when printing a region.
(ps-end-page): Delete ps-showpage-count.
(ps-dummy-page): Calls ps-header-page.
(ps-set-color): Programming improvement.
(ps-plot-region): Doc fix.
(ps-face-attributes): Same functionality as deleted ps-get-face.
(ps-build-reference-face-lists): Do the job by calling
ps-set-face-bold and ps-bold-faces, and friends.
author |
Richard M. Stallman <rms@gnu.org> |
date |
Sat, 06 Sep 1997 02:52:00 +0000 |
parents |
ce011f7cd03f |
children |
|
rev |
line source |
486
|
1 #include <X11/Xlib.h>
|
|
2 #include <X11/Xatom.h>
|
|
3 #include <X11/keysym.h>
|
|
4 #include <X11/cursorfont.h>
|
|
5 #include <X11/Xutil.h>
|
|
6 #include <X11/X10.h>
|
|
7
|
|
8 #define XMOUSEBUFSIZE 64
|
|
9
|
|
10 #ifndef sigmask
|
|
11 #define sigmask(no) (1L << ((no) - 1))
|
|
12 #endif
|
|
13
|
|
14 #define BLOCK_INPUT_DECLARE() int BLOCK_INPUT_mask
|
|
15 #ifdef SIGIO
|
625
|
16 #define BLOCK_INPUT() EMACS_SIGBLOCKX (SIGIO, BLOCK_INPUT_mask)
|
|
17 #define UNBLOCK_INPUT() \
|
|
18 do { int _dummy; EMACS_SIGSETMASK (BLOCK_INPUT_mask, _dummy); } while (0)
|
486
|
19 #else /* not SIGIO */
|
|
20 #define BLOCK_INPUT()
|
|
21 #define UNBLOCK_INPUT()
|
|
22 #endif /* SIGIO */
|
|
23
|
625
|
24 #define CLASS "Emacs" /* class id for GNU Emacs, used in .Xdefaults, etc. */
|