Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
92f2affc
Commit
92f2affc
authored
Aug 02, 2011
by
Lars Magne Ingebrigtsen
Browse files
(ido-mode): Switch off the message if called non-interactively.
parent
57d5aff0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/ido.el
lisp/ido.el
+2
-1
No files found.
lisp/ChangeLog
View file @
92f2affc
2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
2011-08-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
* ido.el (ido-mode): Switch off the message if called
non-interactively.
* mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
* mail/smtpmail.el (smtpmail-query-smtp-server): Try port 25
before 587, since it appears that that's more likely to work for
before 587, since it appears that that's more likely to work for
more people.
more people.
...
...
lisp/ido.el
View file @
92f2affc
...
@@ -1557,7 +1557,8 @@ This function also adds a hook to the minibuffer."
...
@@ -1557,7 +1557,8 @@ This function also adds a hook to the minibuffer."
(setq ido-minor-mode-map-entry (cons 'ido-mode map))
(setq ido-minor-mode-map-entry (cons 'ido-mode map))
(add-to-list 'minor-mode-map-alist ido-minor-mode-map-entry))))
(add-to-list 'minor-mode-map-alist ido-minor-mode-map-entry))))
(message "Ido mode %s" (if ido-mode "enabled" "disabled")))
(when (called-interactively-p 'any)
(message "Ido mode %s" (if ido-mode "enabled" "disabled"))))
;;; IDO KEYMAP
;;; IDO KEYMAP
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment