emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/psgml 345609d: * psgml.el: Don't use compile-internal


From: Stefan Monnier
Subject: [elpa] externals/psgml 345609d: * psgml.el: Don't use compile-internal
Date: Thu, 18 May 2017 08:56:33 -0400 (EDT)

branch: externals/psgml
commit 345609d1bc3b754ab394af7f707ce932c983ef01
Author: Lucien Pullen <address@hidden>
Commit: Stefan Monnier <address@hidden>

    * psgml.el: Don't use compile-internal
    
    Copyright-paperwork-exempt: yes
    
    (compile-internal): Don't autoload.
    (sgml-validate): Use compilation-start.
---
 psgml.el | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/psgml.el b/psgml.el
index 142079a..87bdb03 100644
--- a/psgml.el
+++ b/psgml.el
@@ -1045,8 +1045,8 @@ Any terminating > or / is not matched.")
                                             (progn (end-of-line)
                                                    (point)))))))))))
 
-;;; I doubt that null end tags are used much for large elements,
-;;; so use a small distance here.
+;; I doubt that null end tags are used much for large elements,
+;; so use a small distance here.
 (defvar sgml-slash-distance 1000
   "*If non-nil, is the maximum distance to search for matching /.")
 
@@ -1093,9 +1093,6 @@ start tag, and the second / is the corresponding null end 
tag."
                                               (point))
                                             (1+ blinkpos))))))))))
 
-(eval-and-compile
-  (autoload 'compile-internal "compile" ""))
-
 (defun sgml-default-validate-command ()
   (cond
    ((consp sgml-validate-command)
@@ -1131,9 +1128,10 @@ and move to the line in the SGML document that caused 
it."
                               nil nil 'sgml-validate-command-history)))
   (if sgml-offer-save
       (save-some-buffers nil nil))
-  (compile-internal command "No more errors" "SGML validation"
-                   nil
-                   sgml-validate-error-regexps))
+  ;; (compile-internal command "No more errors" "SGML validation"
+  ;;               nil
+  ;;               sgml-validate-error-regexps)
+  (compilation-start command nil nil sgml-validate-error-regexps))
 
 
 ;;;; Autoloads and hooks



reply via email to

[Prev in Thread] Current Thread [Next in Thread]