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
e05b1e72
Commit
e05b1e72
authored
Dec 02, 2007
by
Glenn Morris
Browse files
(top-level): Don't require cl when compiling.
(url-imap): Use signal rather than check-type.
parent
d87fefad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
2 deletions
+13
-2
lisp/url/ChangeLog
lisp/url/ChangeLog
+11
-0
lisp/url/url-imap.el
lisp/url/url-imap.el
+2
-2
No files found.
lisp/url/ChangeLog
View file @
e05b1e72
2007-12-02 Glenn Morris <rgm@gnu.org>
* url-about.el, url-handlers.el: Don't require cl when compiling.
* url-dav.el (url-dav-delete-directory): Fix message typo.
* url-history.el (top-level): Don't require cl when compiling.
(url-history-setup-save-timer, url-history-save-history):
Use condition-case rather than ignore-errors.
* url-imap.el (top-level): Don't require cl when compiling.
(url-imap): Use signal rather than check-type.
* url-news.el (top-level): Don't require cl when compiling.
(gnus-group-buffer): Define for compiler.
(url-news-fetch-message-id): Don't use `declare'.
...
...
lisp/url/url-imap.el
View file @
e05b1e72
...
...
@@ -32,7 +32,6 @@
;;; Code:
(
eval-when-compile
(
require
'cl
))
(
require
'url-util
)
(
require
'url-parse
)
(
require
'nnimap
)
...
...
@@ -53,7 +52,8 @@
(
nnimap-authenticator
,
authenticator
)))))
(
defun
url-imap
(
url
)
(
check-type
url
vector
"Need a pre-parsed URL."
)
(
unless
(
vectorp
url
)
(
signal
'wrong-type-error
(
list
"Need a pre-parsed URL."
url
)))
(
save-excursion
(
set-buffer
(
generate-new-buffer
" *url-imap*"
))
(
mm-disable-multibyte
)
...
...
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