comparison lisp/net/tramp-compat.el @ 87322:e99e230d7eb3

* files.el (cd-absolute): Set `list-buffers-directory' in order to show correct path in buffer list. * net/tramp.el (tramp-open-connection-setup-interactive-shell) (tramp-find-shell): Send only single prompt setting commands, in order to avoid double-prompt. * net/tramp-compat.el (top): Require cl only when compiling. Reported by Glenn Morris <rgm@gnu.org>.
author Michael Albinus <michael.albinus@gmx.de>
date Tue, 18 Dec 2007 21:02:53 +0000
parents 4636000015c5
children b9e8ab94c460
comparison
equal deleted inserted replaced
87321:0c95db530576 87322:e99e230d7eb3
27 ;; package provides compatibility functions for GNU Emacs 21, GNU 27 ;; package provides compatibility functions for GNU Emacs 21, GNU
28 ;; Emacs 22 and XEmacs 21.4+. 28 ;; Emacs 22 and XEmacs 21.4+.
29 29
30 ;;; Code: 30 ;;; Code:
31 31
32 (eval-when-compile
33
34 ;; Pacify byte-compiler.
35 (require 'cl))
36
32 (eval-and-compile 37 (eval-and-compile
33 38
34 ;; Pacify byte-compiler.
35 (require 'cl)
36 (require 'custom) 39 (require 'custom)
37 40
38 ;; Load the appropriate timer package. 41 ;; Load the appropriate timer package.
39 (if (featurep 'xemacs) 42 (if (featurep 'xemacs)
40 (require 'timer-funcs) 43 (require 'timer-funcs)