]> code.delx.au - gnu-emacs/blobdiff - lisp/gs.el
Add a couple cells to lisp-prettify-symbols-alist
[gnu-emacs] / lisp / gs.el
index 69405d75e788f5016cfd666ad13b4df03bd1e622..7ab3d8b3ca5f533d8f13795684157b5a95f2e62d 100644 (file)
@@ -1,9 +1,8 @@
 ;;; gs.el --- interface to Ghostscript
 
-;; Copyright (C) 1998, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
-;;   2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1998, 2001-2016 Free Software Foundation, Inc.
 
-;; Maintainer: FSF
+;; Maintainer: emacs-devel@gnu.org
 ;; Keywords: internal
 
 ;; This file is part of GNU Emacs.
@@ -97,7 +96,7 @@ FILE is the value to substitute for the place-holder `<file>'."
 (declare-function x-display-pixel-width "xfns.c" (&optional terminal))
 
 (defun gs-width-in-pt (frame pixel-width)
-  "Return, on FRAME, pixel width PIXEL-WIDTH tranlated to pt."
+  "Return, on FRAME, pixel width PIXEL-WIDTH translated to pt."
   (let ((mm (* (float pixel-width)
               (/ (float (x-display-mm-width frame))
                  (float (x-display-pixel-width frame))))))
@@ -107,7 +106,7 @@ FILE is the value to substitute for the place-holder `<file>'."
 (declare-function x-display-pixel-height "xfns.c" (&optional terminal))
 
 (defun gs-height-in-pt (frame pixel-height)
-  "Return, on FRAME, pixel height PIXEL-HEIGHT tranlated to pt."
+  "Return, on FRAME, pixel height PIXEL-HEIGHT translated to pt."
   (let ((mm (* (float pixel-height)
               (/ (float (x-display-mm-height frame))
                  (float (x-display-pixel-height frame))))))
@@ -180,8 +179,8 @@ the form \"WINDOW-ID PIXMAP-ID\".  Value is non-nil if successful."
                ;; out even more sluggish.
                ;; (get-buffer-process "*GS*")
                (not (zerop timeout)))
-         (unless (sit-for 0 100 t)
-           (sleep-for 0 50))
+         (unless (sit-for 0.1 t)
+           (sleep-for 0.05))
          (setq timeout (1- timeout)))
 
        ;; No use waiting longer.  We might want to try killing off
@@ -221,5 +220,4 @@ the form \"WINDOW-ID PIXMAP-ID\".  Value is non-nil if successful."
 
 (provide 'gs)
 
-;; arch-tag: 06ab51b8-4932-4cfe-9f60-b924a8edb3f0
 ;;; gs.el ends here