aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/proof-compat.el
diff options
context:
space:
mode:
authorGravatar David Aspinall <da@inf.ed.ac.uk>2009-09-04 19:49:50 +0000
committerGravatar David Aspinall <da@inf.ed.ac.uk>2009-09-04 19:49:50 +0000
commit09929d6f496ed36d08988dc5397af97fb486d7ff (patch)
treeaaba0e14c381e2a168b04b5e2617976165104e44 /lib/proof-compat.el
parent79ba02419da4f6371cc64e881859858be3d82711 (diff)
replace-in-string -> replace-regexp-in-string
Diffstat (limited to 'lib/proof-compat.el')
-rw-r--r--lib/proof-compat.el9
1 files changed, 2 insertions, 7 deletions
diff --git a/lib/proof-compat.el b/lib/proof-compat.el
index e06b0297..a37ddab9 100644
--- a/lib/proof-compat.el
+++ b/lib/proof-compat.el
@@ -18,9 +18,10 @@
;;
(eval-when-compile
- (require 'cl)
(require 'easymenu))
+(require 'cl)
+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Architecture flags
@@ -89,12 +90,6 @@ The value returned is the value of the last form in BODY."
(progn ,@body)
(select-frame ,old-frame))))))
-
-;; FIXME: rewrite uses of this
-(defun replace-in-string (str regexp newtext &optional literal)
- (replace-regexp-in-string regexp newtext str 'fixedcase literal))
-
-
;; An implemenation of buffer-syntactic-context for GNU Emacs
(defun proof-buffer-syntactic-context-emulate (&optional buffer)
"Return the syntactic context of BUFFER at point.