aboutsummaryrefslogtreecommitdiff
path: root/plastic
diff options
context:
space:
mode:
authorDavid Aspinall2009-09-15 08:08:12 +0000
committerDavid Aspinall2009-09-15 08:08:12 +0000
commite1eebe0f8805e2215e17e25b0815447bd7969ad3 (patch)
tree095cf418e931171439a9a253745d6ea1396ea71b /plastic
parent215664c12e191603a521e82a302cb97a962aacb8 (diff)
Prevent compile warning
Diffstat (limited to 'plastic')
-rw-r--r--plastic/plastic.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/plastic/plastic.el b/plastic/plastic.el
index 435c00d0..546c9acb 100644
--- a/plastic/plastic.el
+++ b/plastic/plastic.el
@@ -521,6 +521,7 @@ For Plastic, we assume that module identifiers coincide with file names."
(defun plastic-preprocessing () ;; NB: dynamic scoping of string
"clear comments and remove literate marks (ie, \\n> ) - acts on var string"
+ (with-no-warnings
;; might want to use proof-string-match here if matching is going
;; to be case sensitive (see docs)
@@ -566,7 +567,7 @@ For Plastic, we assume that module identifiers coincide with file names."
(setq string (replace-regexp-in-string "^ +" "" string))
(if (string-match "^\\s-*$" string)
(setq string (concat "ECHO comment line" proof-terminal-string))
- string))))
+ string)))))
(defun plastic-all-ctxt ()