emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r111893: * lisp/net/net-utils.el (net


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r111893: * lisp/net/net-utils.el (net-utils--revert-function): New fun.
Date: Thu, 28 Feb 2013 09:51:03 -0500
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 111893
fixes bug: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13831
author: Thierry Volpiatto <address@hidden>
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Thu 2013-02-28 09:51:03 -0500
message:
  * lisp/net/net-utils.el (net-utils--revert-function): New fun.
  (net-utils-mode): Use it.
  (net-utils--revert-cmd): New var.
  (net-utils-run-simple): Set it, and remove bogus interactive spec.
  (traceroute): Use net-utils-run-simple.
modified:
  lisp/ChangeLog
  lisp/net/net-utils.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-02-28 06:30:48 +0000
+++ b/lisp/ChangeLog    2013-02-28 14:51:03 +0000
@@ -1,3 +1,11 @@
+2013-02-28  Thierry Volpiatto  <address@hidden>
+
+       * net/net-utils.el (net-utils--revert-function): New fun (bug#13831).
+       (net-utils-mode): Use it.
+       (net-utils--revert-cmd): New var.
+       (net-utils-run-simple): Set it, and remove bogus interactive spec.
+       (traceroute): Use net-utils-run-simple.
+
 2013-02-28  Glenn Morris  <address@hidden>
 
        * textmodes/paragraphs.el (mark-paragraph): Doc fix.

=== modified file 'lisp/net/net-utils.el'
--- a/lisp/net/net-utils.el     2013-01-01 09:11:05 +0000
+++ b/lisp/net/net-utils.el     2013-02-28 14:51:03 +0000
@@ -285,7 +285,8 @@
 (define-derived-mode net-utils-mode special-mode "NetworkUtil"
   "Major mode for interacting with an external network utility."
   (set (make-local-variable 'font-lock-defaults)
-       '((net-utils-font-lock-keywords))))
+       '((net-utils-font-lock-keywords)))
+  (setq-local revert-buffer-function #'net-utils--revert-function))
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 ;; Utility functions
@@ -354,20 +355,38 @@
 ;; General network utilities (diagnostic)
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-(defun net-utils-run-simple (buffer-name program-name args)
+;; Todo: This data could be saved in a bookmark.
+(defvar net-utils--revert-cmd nil)
+
+(defun net-utils-run-simple (buffer program-name args)
   "Run a network utility for diagnostic output only."
-  (interactive)
-  (when (get-buffer buffer-name)
-    (kill-buffer buffer-name))
-  (get-buffer-create buffer-name)
-  (with-current-buffer buffer-name
+  (with-current-buffer (if (stringp buffer) (get-buffer-create buffer) buffer)
+    (let ((proc (get-buffer-process (current-buffer))))
+      (when proc
+        (set-process-filter proc nil)
+        (delete-process proc)))
+    (let ((inhibit-read-only t))
+      (erase-buffer))
     (net-utils-mode)
+    (setq-local net-utils--revert-cmd
+                `(net-utils-run-simple ,(current-buffer) ,program-name ,args))
     (set-process-filter
-     (apply 'start-process (format "%s" program-name)
-           buffer-name program-name args)
-     'net-utils-remove-ctrl-m-filter)
-    (goto-char (point-min)))
-  (display-buffer buffer-name))
+         (apply 'start-process program-name
+                (current-buffer) program-name args)
+         'net-utils-remove-ctrl-m-filter)
+    (goto-char (point-min))
+    (display-buffer (current-buffer))))
+
+(defun net-utils--revert-function (&optional ignore-auto noconfirm)
+  (message "Reverting `%s'..." (buffer-name))
+  (apply (car net-utils--revert-cmd) (cdr net-utils--revert-cmd))
+  (let ((proc (get-buffer-process (current-buffer))))
+    (when proc
+      (set-process-sentinel
+       proc
+       (lambda (process event)
+         (when (string= event "finished\n")
+           (message "Reverting `%s' done" (process-buffer process))))))))
 
 ;;;###autoload
 (defun ifconfig ()
@@ -428,9 +447,8 @@
         (if traceroute-program-options
             (append traceroute-program-options (list target))
           (list target))))
-    (net-utils-run-program
+    (net-utils-run-simple
      (concat "Traceroute" " " target)
-     (concat "** Traceroute ** " traceroute-program " ** " target)
      traceroute-program
      options)))
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]