]> git.eshelyaron.com Git - emacs.git/commitdiff
(compilation-mode-font-lock-keywords):
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 21 Apr 2004 22:37:16 +0000 (22:37 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 21 Apr 2004 22:37:16 +0000 (22:37 +0000)
Minor sanity check on the `hyperlink' slot.

lisp/progmodes/compile.el

index 00b9830516fdc7d9db636ca16fa58f5ab997f4ae..9aaa992ca767f323529134628775506ef1b8ccf6 100644 (file)
@@ -703,6 +703,9 @@ FILE should be (FILENAME . DIRNAME) or nil."
                             ,(if col `(match-string ,col)))))
                (,file compilation-error-face t))
 
+           (unless (or (null (nth 5 item)) (integerp (nth 5 item)))
+             (error "HYPERLINK should be an integer: %s" (nth 5 item)))
+
            `(,(nth 0 item)
 
              ,@(when (integerp file)