all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Andreas Schwab <schwab@linux-m68k.org>
To: Thierry Volpiatto <thierry.volpiatto@gmail.com>
Cc: 13831@debbugs.gnu.org
Subject: bug#13831: 24.3.50; [PATCH] net-utils-mode have no revert-buffer function
Date: Wed, 27 Feb 2013 11:11:30 +0100	[thread overview]
Message-ID: <mvmliaat6b1.fsf@hawking.suse.de> (raw)
In-Reply-To: <87hakym6il.fsf@gmail.com> (Thierry Volpiatto's message of "Wed,  27 Feb 2013 10:48:50 +0100")

Thierry Volpiatto <thierry.volpiatto@gmail.com> writes:

> diff --git a/lisp/net/net-utils.el b/lisp/net/net-utils.el
> index 28fd5c6..3a20add 100644
> --- a/lisp/net/net-utils.el
> +++ b/lisp/net/net-utils.el
> @@ -1,3 +1,5 @@
> +
> +Process nil processus arrêté

error: (void-variable Process)

> @@ -369,6 +377,31 @@ This variable is only used if the variable
>      (goto-char (point-min)))
>    (display-buffer buffer-name))
>  
> +(defun net-utils-revert-function (&optional ignore-auto noconfirm)
> +  (message "Reverting `%s'..." (buffer-name))
> +  (let ((inhibit-read-only t))
> +    (erase-buffer)
> +    (set-process-filter
> +     (apply 'start-process (format "%s" net-utils-program-name)
                              ^^^^^^^^^^^^

That's a no-op.

> +            (buffer-name) net-utils-program-name net-utils-program-args)
> +     #'(lambda (process output-string)
> +         (let ((filtered-string output-string))
> +           (set-buffer (process-buffer process))
> +           (let ((inhibit-read-only t))
> +             (while (string-match "\r" filtered-string)
> +               (setq filtered-string
> +                     (replace-match "" nil nil filtered-string)))
> +             (save-excursion
> +               ;; Insert the text, moving the process-marker.
> +               (goto-char (process-mark process))
> +               (insert filtered-string)
> +               (set-marker (process-mark process) (point)))))))
> +    (set-process-sentinel
> +     (get-process net-utils-program-name)

There is no guarantee that a process with this name exists.

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."





  reply	other threads:[~2013-02-27 10:11 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-27  9:30 bug#13831: 24.3.50; [PATCH] net-utils-mode have no revert-buffer function Thierry Volpiatto
2013-02-27  9:48 ` Thierry Volpiatto
2013-02-27 10:11   ` Andreas Schwab [this message]
2013-02-27 10:50     ` Thierry Volpiatto
2013-02-27 11:57       ` Andreas Schwab
2013-02-27 12:03         ` Thierry Volpiatto
2013-02-27 14:08       ` Stefan Monnier
2013-02-27 14:35         ` Thierry Volpiatto
2013-02-27 15:25           ` Stefan Monnier
2013-02-27 16:36             ` Thierry Volpiatto
2013-02-28  4:51               ` Stefan Monnier
2013-02-28  6:18                 ` Thierry Volpiatto
2013-02-28 14:04                   ` Stefan Monnier
2013-02-28 19:45                     ` Thierry Volpiatto
2013-03-01  3:05                       ` Stefan Monnier
2013-03-01  7:02                         ` Thierry Volpiatto
2013-03-01 14:29                           ` Stefan Monnier
2013-03-01 15:22                             ` Thierry Volpiatto
2013-03-01 17:28                               ` Stefan Monnier
2013-03-01 19:07                             ` Thierry Volpiatto
2013-03-11 18:31                               ` Stefan Monnier
2013-03-13 14:43                                 ` Thierry Volpiatto
2013-03-13 17:52                                   ` Stefan Monnier
2013-03-13 20:12                                     ` Thierry Volpiatto
2013-03-03  6:16                             ` Thierry Volpiatto
2013-03-01 14:30                           ` Thierry Volpiatto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=mvmliaat6b1.fsf@hawking.suse.de \
    --to=schwab@linux-m68k.org \
    --cc=13831@debbugs.gnu.org \
    --cc=thierry.volpiatto@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.