From 3f3400e0981aed4e0c6785f737aae6330af12413 Mon Sep 17 00:00:00 2001 From: David Aspinall Date: Thu, 8 Jul 2010 23:06:04 +0000 Subject: save-excursion -> with-temp-buffer --- lib/texi-docstring-magic.el | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/texi-docstring-magic.el b/lib/texi-docstring-magic.el index d95f12fc..d9791cfd 100644 --- a/lib/texi-docstring-magic.el +++ b/lib/texi-docstring-magic.el @@ -192,13 +192,10 @@ including any whitespace included to delimit matches.") (defun texi-docstring-magic-untabify (string) "Convert tabs in STRING into multiple spaces." - (save-excursion - (set-buffer - (get-buffer-create " texi-docstring-magic-untabify")) + (with-temp-buffer (insert string) (untabify (point-min) (point-max)) - (prog1 (buffer-string) - (kill-buffer (current-buffer))))) + (buffer-string))) (defun texi-docstring-magic-munge-docstring (docstring args) "Markup DOCSTRING for texi according to regexp matches." -- cgit v1.2.3