]> code.delx.au - gnu-emacs/commitdiff
(tramp-completion-mode): defvar moved up.
authorRichard M. Stallman <rms@gnu.org>
Fri, 28 Oct 2005 16:23:55 +0000 (16:23 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 28 Oct 2005 16:23:55 +0000 (16:23 +0000)
lisp/ChangeLog
lisp/net/tramp.el

index 224f1e39565dd42bf24aea3402a2b50cbdf94e5d..238c679d257db795e44f09616560d61fbe1c0ec4 100644 (file)
@@ -1,3 +1,26 @@
+2005-10-28  Richard M. Stallman  <rms@gnu.org>
+
+       * net/tramp.el (tramp-completion-mode): defvar moved up.
+
+       * emacs-lisp/easymenu.el (easy-menu-change): Doc fix.
+
+       * tool-bar.el (tool-bar-mode): Delete autoload cookie.
+
+       * files.el (find-file-noselect): Use %d to format large file size.
+
+       * bindings.el (help-echo): Add %e.
+
+       * loadup.el ("facemenu"): Load unconditionally.
+       ("image", "international/fontset", "dnd", "mwheel", "tool-bar"):
+       ("x-dnd"): Load, when appropriate.
+
+       * startup.el (command-line): Call before-init-hook earlier.
+       Warn about some bad characters in -u user name.
+
+       * textmodes/flyspell.el (flyspell-large-region): Pass -t if Tex file.
+       (flyspell-external-point-words): Error if misspelled word is not found.
+       Set flyspell-large-region-beg at end of word.
+       
 2005-10-28  Andreas Schwab  <schwab@suse.de>
 
        * view.el (View-revert-buffer-scroll-page-forward): Use
index cc662770dcf5bb48f8ed0dae55b05c8975d53255..545fa9e94b1d173635af9690bf5f22c7c1fd8f81 100644 (file)
@@ -4369,6 +4369,9 @@ necessary anymore."
 
 ;;; File name handler functions for completion mode
 
+(defvar tramp-completion-mode nil
+  "If non-nil, we are in file name completion mode.")
+
 ;; Necessary because `tramp-file-name-regexp-unified' and
 ;; `tramp-completion-file-name-regexp-unified' aren't different.
 ;; If nil, `tramp-completion-run-real-handler' is called (i.e. forwarding to
@@ -4435,9 +4438,6 @@ necessary anymore."
   (substring
    file (length (tramp-completion-handle-file-name-directory file))))
 
-(defvar tramp-completion-mode nil
-  "If non-nil, we are in file name completion mode.")
-
 ;; Method, host name and user name completion.
 ;; `tramp-completion-dissect-file-name' returns a list of
 ;; tramp-file-name structures. For all of them we return possible completions.