aboutsummaryrefslogtreecommitdiffhomepage
path: root/generic/proof-utils.el
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2010-08-25 08:42:44 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2010-08-25 08:42:44 +0000
commit9a771e0f787216593070c66dfaed3b9ea2007e81 (patch)
tree405875480d1aabdae5f67074fc91a2bb4af2c98e /generic/proof-utils.el
parent44ff04eef9a3c1c9e499eb9f1c98db0765cdabb4 (diff)
Bring syntactic context functions together
Diffstat (limited to 'generic/proof-utils.el')
-rw-r--r--generic/proof-utils.el17
1 files changed, 0 insertions, 17 deletions
diff --git a/generic/proof-utils.el b/generic/proof-utils.el
index 1d3932e9..a20106b0 100644
--- a/generic/proof-utils.el
+++ b/generic/proof-utils.el
@@ -698,23 +698,6 @@ If optional arg REALLY-WORD is non-nil, it finds just a word."
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
-;; Syntactic context
-;;
-
-;; [this belongs in proof-syntax but uses `proof-ass-sym' macro above]
-
-(defun proof-looking-at-syntactic-context ()
- "Determine if current point is at beginning or within comment/string context.
-If so, return a symbol indicating this ('comment or 'string).
-This function invokes <PA-syntactic-context> if that is defined, otherwise
-it calls `proof-looking-at-syntactic-context'."
- (if (fboundp (proof-ass-sym syntactic-context))
- (funcall (proof-ass-sym syntactic-context))
- (proof-looking-at-syntactic-context-default)))
-
-
-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
-;;
;; Stripping output and message
;;