]> git.eshelyaron.com Git - emacs.git/commitdiff
* idlwave.el (idlwave-scan-user-lib-files, idlwave-write-paths): Simplify
authorGlenn Morris <rgm@gnu.org>
Wed, 29 May 2013 06:44:19 +0000 (23:44 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 29 May 2013 06:44:19 +0000 (23:44 -0700)
via with-temp-buffer.

lisp/ChangeLog
lisp/progmodes/idlwave.el

index eed02c441f2363fd746b75a691856969975bdb77..c3c2cc829cbd0db9e7ae39bd0b76e28c0164ebc9 100644 (file)
@@ -1,5 +1,8 @@
 2013-05-29  Glenn Morris  <rgm@gnu.org>
 
+       * progmodes/idlwave.el (idlwave-scan-user-lib-files)
+       (idlwave-write-paths): Simplify via with-temp-buffer.
+
        * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
        * emulation/cua-rect.el: Also load cua-base at run time.
 
index aeaf1acb2ac66c7ef80d8c28e5692e99bf5aa776..cbcd2f9d10e4616024ed616db5bbb2cb4c708658 100644 (file)
@@ -5481,30 +5481,21 @@ directories and save the routine info.
     (message "Creating user catalog file...")
     (kill-buffer "*idlwave-scan.pro*")
     (kill-buffer (get-buffer-create "*IDLWAVE Widget*"))
-    (let ((font-lock-maximum-size 0)
-         (auto-mode-alist nil))
-      (find-file idlwave-user-catalog-file))
-    (if (and (boundp 'font-lock-mode)
-            font-lock-mode)
-       (font-lock-mode 0))
-    (erase-buffer)
-    (insert ";; IDLWAVE user catalog file\n")
-    (insert (format ";; Created %s\n\n" (current-time-string)))
-
-    ;; Define the routine info list
-    (insert "\n(setq idlwave-user-catalog-routines\n    '(")
-    (let ((standard-output (current-buffer)))
-      (mapc (lambda (x)
-             (insert "\n    ")
-             (prin1 x)
-             (goto-char (point-max)))
-           idlwave-user-catalog-routines))
-    (insert (format "))\n\n;;; %s ends here\n"
-                   (file-name-nondirectory idlwave-user-catalog-file)))
-    (goto-char (point-min))
-    ;; Save the buffer
-    (save-buffer 0)
-    (kill-buffer (current-buffer)))
+    (with-temp-buffer
+      (insert ";; IDLWAVE user catalog file\n")
+      (insert (format ";; Created %s\n\n" (current-time-string)))
+
+      ;; Define the routine info list
+      (insert "\n(setq idlwave-user-catalog-routines\n    '(")
+      (let ((standard-output (current-buffer)))
+       (mapc (lambda (x)
+               (insert "\n    ")
+               (prin1 x)
+               (goto-char (point-max)))
+             idlwave-user-catalog-routines))
+      (insert (format "))\n\n;;; %s ends here\n"
+                     (file-name-nondirectory idlwave-user-catalog-file)))
+      (write-region nil nil idlwave-user-catalog-file)))
   (message "Creating user catalog file...done")
   (message "Info for %d routines saved in %s"
           (length idlwave-user-catalog-routines)
@@ -5522,31 +5513,23 @@ directories and save the routine info.
 (defun idlwave-write-paths ()
   (interactive)
   (when (and idlwave-path-alist idlwave-system-directory)
-    (let ((font-lock-maximum-size 0)
-         (auto-mode-alist nil))
-      (find-file idlwave-path-file))
-    (if (and (boundp 'font-lock-mode)
-            font-lock-mode)
-       (font-lock-mode 0))
-    (erase-buffer)
-    (insert ";; IDLWAVE paths\n")
-    (insert (format ";; Created %s\n\n" (current-time-string)))
+    (with-temp-buffer
+      (insert ";; IDLWAVE paths\n")
+      (insert (format ";; Created %s\n\n" (current-time-string)))
     ;; Define the variable which knows the value of "!DIR"
-    (insert (format "\n(setq idlwave-system-directory \"%s\")\n"
-                   idlwave-system-directory))
-
-    ;; Define the variable which contains a list of all scanned directories
-    (insert "\n(setq idlwave-path-alist\n    '(")
-    (let ((standard-output (current-buffer)))
-      (mapc (lambda (x)
-             (insert "\n      ")
-             (prin1 x)
-             (goto-char (point-max)))
-           idlwave-path-alist))
-    (insert "))\n")
-    (save-buffer 0)
-    (kill-buffer (current-buffer))))
-
+      (insert (format "\n(setq idlwave-system-directory \"%s\")\n"
+                     idlwave-system-directory))
+
+      ;; Define the variable which contains a list of all scanned directories
+      (insert "\n(setq idlwave-path-alist\n    '(")
+      (let ((standard-output (current-buffer)))
+       (mapc (lambda (x)
+               (insert "\n      ")
+               (prin1 x)
+               (goto-char (point-max)))
+             idlwave-path-alist))
+      (insert "))\n")
+      (write-region nil nil idlwave-path-file))))
 
 (defun idlwave-expand-path (path &optional default-dir)
   ;; Expand parts of path starting with '+' recursively into directory list.