[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch to fix 1 old backquote syntax




Hi,
this fixes one occurrence old backquote syntax (` aaa (,@ bbb)), which is very 
deprecated. 

I could not open my mail in today's build of Emacs (from Bazaar) without this.

Thanks

--- ssl.el.~1.2.~    2004-01-18 15:28:28.000000000 +0100
+++ ssl.el    2010-07-28 16:16:10.000000000 +0200
@@ -192,10 +192,9 @@
   (let* ((process-connection-type nil)
      (port service)
      (proc (eval
-        (`
-         (start-process name buffer ssl-program-name
-                (,@ ssl-program-arguments))))))
-    (process-kill-without-query proc)
+            `(start-process name buffer ssl-program-name
+                            ,@ssl-program-arguments))))
+    (process-kill-without-query proc)
     proc))

(provide 'ssl)