Skip to content

Commit

Permalink
Fix a couple forgotten arguemnts.
Browse files Browse the repository at this point in the history
  • Loading branch information
aemoncannon committed Jun 8, 2008
1 parent 406d2a8 commit ce99e5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flyparse-mode.el
Expand Up @@ -538,7 +538,7 @@
(let* ((err-str (format "Failed to launch parser process '%s' with args %s: %s" (let* ((err-str (format "Failed to launch parser process '%s' with args %s: %s"
cmd args (error-message-string err)))) cmd args (error-message-string err))))
(flyparse-log 0 err-str) (flyparse-log 0 err-str)
(flyparse-cleanup-temp-files) (flyparse-cleanup-temp-files buffer-file-name)
))))) )))))


(defun flyparse-create-parse-process (cmd args) (defun flyparse-create-parse-process (cmd args)
Expand Down Expand Up @@ -673,7 +673,7 @@
(when flyparse-timer (when flyparse-timer
(cancel-timer flyparse-timer) (cancel-timer flyparse-timer)
(setq flyparse-timer nil) (setq flyparse-timer nil)
(flyparse-cleanup-temp-files) (flyparse-cleanup-temp-files buffer-file-name)
)) ))


(defun flyparse-after-change-function (start stop len) (defun flyparse-after-change-function (start stop len)
Expand Down

0 comments on commit ce99e5b

Please sign in to comment.