Skip to content

Commit

Permalink
Kill temporary buffer.
Browse files Browse the repository at this point in the history
  • Loading branch information
rejeep committed Jun 10, 2010
1 parent 7563380 commit 4b023e7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion html-script-src.el
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ With prefix argument, cache will be omitted."
(or html-script-src-cache
(let ((buffer (html-script-src-fetch)))
(with-current-buffer buffer
(setq html-script-src-cache (html-script-src-parse))))))
(setq html-script-src-cache (html-script-src-parse)))
(kill-buffer buffer)))
html-script-src-cache)

(defun html-script-src-parse ()
"Parses the Script Src website and returns all JavaScript frameworks as a list."
Expand Down

0 comments on commit 4b023e7

Please sign in to comment.