diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2014-12-08 15:02:26 -0500 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2014-12-08 15:02:26 -0500 |
commit | b76bea4c2639ee78b345d50a0f6ce5d10e2253ac (patch) | |
tree | d962f149c41ebad82fc819c818cb084619e30433 /lisp/url | |
parent | e0e2f363e86f8581191640324296fdebd2520d7c (diff) | |
download | emacs-b76bea4c2639ee78b345d50a0f6ce5d10e2253ac.tar.gz |
Various minor details accumulated over time
* lisp/info.el (Info-mode-map): Remove left-over binding.
* lisp/net/tramp.el (tramp-handle-make-symbolic-link): Mark unused arg.
* lisp/obsolete/gulp.el (gulp-create-m-p-alist): Remove unused var `mnt-tm'.
* lisp/progmodes/gud.el (gud-gdb-completions): Remove unused var `start'.
* lisp/url/url-http.el (url-http-activate-callback): Make debug more verbose.
* src/process.c: Whitespace and line-break nitpicks.
Diffstat (limited to 'lisp/url')
-rw-r--r-- | lisp/url/ChangeLog | 8 | ||||
-rw-r--r-- | lisp/url/url-http.el | 3 |
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index 18fc2a1b8c0..b39c67effbb 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,7 @@ +2014-12-08 Stefan Monnier <monnier@iro.umontreal.ca> + + * url-http.el (url-http-activate-callback): Make debug more verbose. + 2014-12-05 Stefan Monnier <monnier@iro.umontreal.ca> * url-future.el (url-future-done-p, url-future-completed-p) @@ -21,8 +25,8 @@ 2014-11-05 Teodor Zlatanov <tzz@lifelogs.com> * url-http.el (url-user-agent): New variable, can be function or - string. Suggested by Vibhav Pant <vibhavp@ubuntu.com>. Add - :version. (Bug#16498) + string. Suggested by Vibhav Pant <vibhavp@ubuntu.com>. + Add :version. (Bug#16498) (url-http-user-agent-string): Use it. diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 1001c4deada..3d5b6be80ac 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -892,7 +892,8 @@ should be shown to the user." (url-http-mark-connection-as-free (url-host url-current-object) (url-port url-current-object) url-http-process) - (url-http-debug "Activating callback in buffer (%s)" (buffer-name)) + (url-http-debug "Activating callback in buffer (%s): %S %S" + (buffer-name) url-callback-function url-callback-arguments) (apply url-callback-function url-callback-arguments)) ;; ) |