emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/lisp/net net-utils.el


From: Glenn Morris
Subject: [Emacs-diffs] emacs/lisp/net net-utils.el
Date: Tue, 01 Sep 2009 03:14:21 +0000

CVSROOT:        /sources/emacs
Module name:    emacs
Changes by:     Glenn Morris <gm>       09/09/01 03:14:21

Modified files:
        lisp/net       : net-utils.el 

Log message:
        (nslookup): Use make-comint rather than comint-run.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/lisp/net/net-utils.el?cvsroot=emacs&r1=1.38&r2=1.39

Patches:
Index: net-utils.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/net/net-utils.el,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -b -r1.38 -r1.39
--- net-utils.el        8 Aug 2009 18:26:39 -0000       1.38
+++ net-utils.el        1 Sep 2009 03:14:20 -0000       1.39
@@ -1,7 +1,7 @@
 ;;; net-utils.el --- network functions
 
-;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-;;   2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
+;;   2007, 2008, 2009  Free Software Foundation, Inc.
 
 ;; Author:  Peter Breton <address@hidden>
 ;; Created: Sun Mar 16 1997
@@ -484,7 +484,7 @@
 (defun nslookup ()
   "Run nslookup program."
   (interactive)
-  (comint-run nslookup-program)
+  (switch-to-buffer (make-comint "nslookup" nslookup-program))
   (nslookup-mode))
 
 (defvar comint-prompt-regexp)




reply via email to

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