comparison lisp/rlogin.el @ 5208:203a78f3f2e4

Remove spurious comment between autoload cookie and defvar for rlogin-initially-track-cwd.
author Noah Friedman <friedman@splode.com>
date Wed, 01 Dec 1993 13:04:24 +0000
parents e4ebdcbb3ffc
children 242985a124fc
comparison
equal deleted inserted replaced
5207:e4ebdcbb3ffc 5208:203a78f3f2e4
21 ;; Inc.; 675 Massachusetts Avenue.; Cambridge, MA 02139, USA. 21 ;; Inc.; 675 Massachusetts Avenue.; Cambridge, MA 02139, USA.
22 22
23 ;;; Commentary: 23 ;;; Commentary:
24 24
25 ;; Support for remote logins using `rlogin'. 25 ;; Support for remote logins using `rlogin'.
26 ;; $Id: rlogin.el,v 1.13 1993/10/22 17:12:54 rms Exp friedman $ 26 ;; $Id: rlogin.el,v 1.14 1993/12/01 09:57:04 friedman Exp friedman $
27 27
28 ;;; Todo: 28 ;;; Todo:
29 29
30 ;; Make this mode deal with comint-last-input-end properly. 30 ;; Make this mode deal with comint-last-input-end properly.
31 31
54 Generally it is better not to waste ptys on systems which have a static 54 Generally it is better not to waste ptys on systems which have a static
55 number of them. On the other hand, some implementations of `rlogin' assume 55 number of them. On the other hand, some implementations of `rlogin' assume
56 a pty is being used, and errors will result from using a pipe instead.") 56 a pty is being used, and errors will result from using a pipe instead.")
57 57
58 ;;;###autoload 58 ;;;###autoload
59 ;(setq rlogin-initially-track-cwd nil)
60 (defvar rlogin-initially-track-cwd t 59 (defvar rlogin-initially-track-cwd t
61 "*If non-`nil', do remote directory tracking via ange-ftp right away. 60 "*If non-`nil', do remote directory tracking via ange-ftp right away.
62 If `nil', you can still enable directory tracking by doing 61 If `nil', you can still enable directory tracking by doing
63 `M-x dirtrack-toggle'.") 62 `M-x dirtrack-toggle'.")
64 63