From c8be5ff4118890d83f3cf0d3e376b1baab6d524c Mon Sep 17 00:00:00 2001 From: Christian Cunningham Date: Sun, 9 Jun 2024 22:56:54 -0700 Subject: Rename variables --- elchemy-functions.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'elchemy-functions.el') diff --git a/elchemy-functions.el b/elchemy-functions.el index 296e1e9..465034b 100644 --- a/elchemy-functions.el +++ b/elchemy-functions.el @@ -2,9 +2,9 @@ (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)))) + (setq elchemy/rib/current-word (buffer-substring-no-properties (mark) (point))) + (setq elchemy/rib/old-string (read-string "OLD string:\n" elchemy/rib/current-word)) + (setq elchemy/rib/new-string (read-string "NEW string:\n" elchemy/rib/old-string)) + (query-replace elchemy/rib/old-string elchemy/rib/new-string nil (point-min) (point-max)))) (provide 'elchemy-functions) -- cgit v1.2.1