summaryrefslogtreecommitdiff
path: root/nemacs-functions.el
diff options
context:
space:
mode:
Diffstat (limited to 'nemacs-functions.el')
-rw-r--r--nemacs-functions.el10
1 files changed, 0 insertions, 10 deletions
diff --git a/nemacs-functions.el b/nemacs-functions.el
deleted file mode 100644
index 5513fae..0000000
--- a/nemacs-functions.el
+++ /dev/null
@@ -1,10 +0,0 @@
-(defun nemacs/replace-in-buffer ()
- (interactive)
- (save-excursion
- (if (equal mark-active nil) (mark-word))
- (setq nm/rib/current-word (buffer-substring-no-properties (mark) (point)))
- (setq nm/rib/old-string (read-string "OLD string:\n" nm/rib/current-word))
- (setq nm/rib/new-string (read-string "NEW string:\n" nm/rib/old-string))
- (query-replace nm/rib/old-string nm/rib/new-string nil (point-min) (point-max))))
-
-(provide 'nemacs-functions)