Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!sun-barr!apple!brutus.cs.uiuc.edu!tut.cis.ohio-state.edu!EW09.NAS.NASA.GOV!raible From: raible@EW09.NAS.NASA.GOV (Eric L. Raible) Newsgroups: gnu.emacs Subject: fixes to remote.el Message-ID: <8909130115.AA09727@ew09.nas.nasa.gov> Date: 13 Sep 89 01:15:45 GMT Sender: daemon@tut.cis.ohio-state.edu Reply-To: raible@orville.nas.nasa.gov Distribution: gnu Organization: GNUs Not Usenet Lines: 19 Two small fixes to the recently-posted remote-editing package: 1) If you want save-some-buffers to ask about remote buffers, change the binding of buffer-file-name in find-remote-file to a setq: old: ;; dynamic binding for normal-mode (let ((buffer-file-name (concat host file))) (normal-mode) ... new: (setq buffer-file-name (concat host file)) (normal-mode) ... 2) If you have different usernames on different machines, contact me for a version that handles this transparently.