(pgg-gpg-process-region): Don't blink. From Satyaki
authorSimon Josefsson <jas@extundo.com>
Sat, 8 Feb 2003 18:58:23 +0000 (18:58 +0000)
committerSimon Josefsson <jas@extundo.com>
Sat, 8 Feb 2003 18:58:23 +0000 (18:58 +0000)
Das <satyaki@chicory.stanford.edu>.

lisp/ChangeLog
lisp/pgg-gpg.el

index 8d07786..9ba24b7 100644 (file)
@@ -1,3 +1,8 @@
+2003-02-08  Simon Josefsson  <jas@extundo.com>
+
+       * pgg-gpg.el (pgg-gpg-process-region): Don't blink.  From Satyaki
+       Das <satyaki@chicory.stanford.edu>.
+
 2003-02-08  Jesper Harder  <harder@ifa.au.dk>
 
        * gnus-art.el (gnus-article-refer-article): Use
index a9f6494..b34cbdf 100644 (file)
         (errors-buffer pgg-errors-buffer)
         (orig-mode (default-file-modes))
         (process-connection-type nil)
-        process status exit-status)
+        exit-status)
     (with-current-buffer (get-buffer-create errors-buffer)
       (buffer-disable-undo)
       (erase-buffer))
     (unwind-protect
        (progn
          (set-default-file-modes 448)
-         (let ((coding-system-for-write 'binary))
-           (setq process
-                 (apply #'start-process "*GnuPG*" errors-buffer
-                        program args)))
-         (set-process-sentinel process #'ignore)
-         (when passphrase
-           (process-send-string process (concat passphrase "\n")))
-         (process-send-region process start end)
-         (process-send-eof process)
-         (while (eq 'run (process-status process))
-           (accept-process-output process 5))
-         (setq status (process-status process)
-               exit-status (process-exit-status process))
-         (delete-process process)
+          (let* ((coding-system-for-write 'binary)
+                 (input (buffer-substring-no-properties start end)))
+            (with-temp-buffer
+              (when passphrase
+                (insert passphrase "\n"))
+              (insert input)
+              (setq exit-status
+                    (apply #'call-process-region (point-min) (point-max) program
+                           nil errors-buffer nil args))))
          (with-current-buffer (get-buffer-create output-buffer)
            (buffer-disable-undo)
            (erase-buffer)
                (let ((coding-system-for-read 'raw-text-dos))
                  (insert-file-contents output-file-name)))
            (set-buffer errors-buffer)
-           (if (memq status '(stop signal))
-               (error "%s exited abnormally: '%s'" program exit-status))
-           (if (= 127 exit-status)
-               (error "%s could not be found" program))))
-      (if (and process (eq 'run (process-status process)))
-         (interrupt-process process))
+           (if (not (equal exit-status 0))
+               (error "%s exited abnormally: '%s'" program exit-status))))
       (if (file-exists-p output-file-name)
          (delete-file output-file-name))
       (set-default-file-modes orig-mode))))