Lars Magne Ingebrigtsen | 1 Jul 2011 01:15
Picon
Favicon
Gravatar

/srv/bzr/emacs/trunk r104819: * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):

------------------------------------------------------------
revno: 104819
committer: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
branch nick: trunk
timestamp: Fri 2011-07-01 01:15:02 +0200
message:
  * net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
  Remove two rather uninteresting debugging-like messages to make
  debbugs.el more silent.
modified:
  lisp/ChangeLog
  lisp/net/soap-client.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog	2011-06-30 23:11:36 +0000
+++ b/lisp/ChangeLog	2011-06-30 23:15:02 +0000
 <at>  <at>  -1,5 +1,9  <at>  <at> 
 2011-06-30  Lars Magne Ingebrigtsen  <larsi <at> gnus.org>

+	* net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
+	Remove two rather uninteresting debugging-like messages to make
+	debbugs.el more silent.
+
 	* comint.el (comint-password-prompt-regexp): Accept "Response" as
 	a password-like phrase.

=== modified file 'lisp/net/soap-client.el'
--- a/lisp/net/soap-client.el	2011-06-09 20:22:06 +0000
+++ b/lisp/net/soap-client.el	2011-06-30 23:15:02 +0000
(Continue reading)

Lars Magne Ingebrigtsen | 1 Jul 2011 01:11
Picon
Favicon
Gravatar

/srv/bzr/emacs/trunk r104818: * comint.el (comint-password-prompt-regexp): Accept "Response" as

------------------------------------------------------------
revno: 104818
committer: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
branch nick: trunk
timestamp: Fri 2011-07-01 01:11:36 +0200
message:
  * comint.el (comint-password-prompt-regexp): Accept "Response" as
  a password-like phrase.

  This fixes the

  [larsi <at> quimbies ~/]$ ssh root <at> quimby
  Password: 
  Response: 

  case.
modified:
  lisp/ChangeLog
  lisp/comint.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog	2011-06-30 20:45:12 +0000
+++ b/lisp/ChangeLog	2011-06-30 23:11:36 +0000
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2011-06-30  Lars Magne Ingebrigtsen  <larsi <at> gnus.org>
+
+	* comint.el (comint-password-prompt-regexp): Accept "Response" as
+	a password-like phrase.
+
(Continue reading)

Katsumi Yamaoka | 1 Jul 2011 01:27
Favicon
Gravatar

/srv/bzr/emacs/trunk r104821: mml2015.el (mml2015-use): Replace string-match-p with string-match for old Emacsen.

------------------------------------------------------------
revno: 104821
committer: Katsumi Yamaoka <yamaoka <at> jpl.org>
branch nick: trunk
timestamp: Thu 2011-06-30 23:27:10 +0000
message:
  mml2015.el (mml2015-use): Replace string-match-p with string-match for old Emacsen.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/mml2015.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog	2011-06-30 22:20:32 +0000
+++ b/lisp/gnus/ChangeLog	2011-06-30 23:27:10 +0000
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2011-06-30  Katsumi Yamaoka  <yamaoka <at> jpl.org>
+
+	* mml2015.el (mml2015-use): Replace string-match-p with string-match
+	for old Emacsen.
+
 2011-06-30  Daiki Ueno  <ueno <at> unixuser.org>

 	* mml2015.el (mml2015-use): Don't try to load PGG on Emacs 24, when EPG

=== modified file 'lisp/gnus/mml2015.el'
--- a/lisp/gnus/mml2015.el	2011-06-30 20:54:35 +0000
+++ b/lisp/gnus/mml2015.el	2011-06-30 23:27:10 +0000
 <at>  <at>  -59,8 +59,8  <at>  <at> 
 			 ;; Don't load PGG if it is marked as obsolete
(Continue reading)

Lars Magne Ingebrigtsen | 1 Jul 2011 01:19
Picon
Favicon
Gravatar

/srv/bzr/emacs/trunk r104820: textmodes/flyspell.el (flyspell-word): Consider words that differ only

------------------------------------------------------------
revno: 104820
committer: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
branch nick: trunk
timestamp: Fri 2011-07-01 01:19:45 +0200
message:
  textmodes/flyspell.el (flyspell-word): Consider words that differ only
  in case as potential doublons (bug#5687).
modified:
  lisp/ChangeLog
  lisp/textmodes/flyspell.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog	2011-06-30 23:15:02 +0000
+++ b/lisp/ChangeLog	2011-06-30 23:19:45 +0000
 <at>  <at>  -1,5 +1,8  <at>  <at> 
 2011-06-30  Lars Magne Ingebrigtsen  <larsi <at> gnus.org>

+	* textmodes/flyspell.el (flyspell-word): Consider words that
+	differ only in case as potential doublons (bug#5687).
+
 	* net/soap-client.el (soap-invoke, soap-wsdl-resolve-references):
 	Remove two rather uninteresting debugging-like messages to make
 	debbugs.el more silent.

=== modified file 'lisp/textmodes/flyspell.el'
--- a/lisp/textmodes/flyspell.el	2011-05-23 17:57:17 +0000
+++ b/lisp/textmodes/flyspell.el	2011-06-30 23:19:45 +0000
 <at>  <at>  -993,14 +993,17  <at>  <at> 
(Continue reading)

Daiki Ueno | 1 Jul 2011 03:25
Gravatar

/srv/bzr/emacs/trunk r104822: * auth-source.el (auth-source-backend): Fix :initarg for data slot.

------------------------------------------------------------
revno: 104822
committer: Daiki Ueno <ueno <at> unixuser.org>
branch nick: trunk
timestamp: Fri 2011-07-01 10:25:21 +0900
message:
  * auth-source.el (auth-source-backend): Fix :initarg for data slot.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/auth-source.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog	2011-06-30 23:27:10 +0000
+++ b/lisp/gnus/ChangeLog	2011-07-01 01:25:21 +0000
 <at>  <at>  -1,3 +1,7  <at>  <at> 
+2011-07-01  Daiki Ueno  <ueno <at> unixuser.org>
+
+	* auth-source.el (auth-source-backend): Fix :initarg for data slot.
+
 2011-06-30  Katsumi Yamaoka  <yamaoka <at> jpl.org>

 	* mml2015.el (mml2015-use): Replace string-match-p with string-match

=== modified file 'lisp/gnus/auth-source.el'
--- a/lisp/gnus/auth-source.el	2011-06-30 22:20:32 +0000
+++ b/lisp/gnus/auth-source.el	2011-07-01 01:25:21 +0000
 <at>  <at>  -116,7 +116,7  <at>  <at> 
          :type t
          :custom string
(Continue reading)

Daiki Ueno | 1 Jul 2011 04:07
Gravatar

/srv/bzr/emacs/trunk r104824: Fix commit 104823.

------------------------------------------------------------
revno: 104824
committer: Daiki Ueno <ueno <at> unixuser.org>
branch nick: trunk
timestamp: Fri 2011-07-01 11:07:32 +0900
message:
  Fix commit 104823.
modified:
  lisp/gnus/plstore.el
=== modified file 'lisp/gnus/plstore.el'
--- a/lisp/gnus/plstore.el	2011-07-01 01:34:38 +0000
+++ b/lisp/gnus/plstore.el	2011-07-01 02:07:32 +0000
 <at>  <at>  -143,12 +143,12  <at>  <at> 

 (defun plstore--init-from-buffer (plstore)
   (goto-char (point-min))
-  (when (looking-at ";;; public entries\n")
+  (when (looking-at ";;; public entries")
     (forward-line)
     (plstore--set-alist plstore (read (point-marker)))
     (forward-sexp)
     (forward-char)
-    (when (looking-at ";;; secret entries\n")
+    (when (looking-at ";;; secret entries")
       (forward-line)
       (plstore--set-encrypted-data plstore (read (point-marker))))
     (plstore--merge-secret plstore)))
 <at>  <at>  -372,6 +372,7  <at>  <at> 
(Continue reading)

Daiki Ueno | 1 Jul 2011 03:34
Gravatar

/srv/bzr/emacs/trunk r104823: Add public key encryption support to plstore.

------------------------------------------------------------
revno: 104823
committer: Daiki Ueno <ueno <at> unixuser.org>
branch nick: trunk
timestamp: Fri 2011-07-01 10:34:38 +0900
message:
  Add public key encryption support to plstore.

  * plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
  (plstore-save): Support public key encryption.
  (plstore--init-from-buffer): New function.
  (plstore-open): Use it; fix error when opening a non-existent file.
  (plstore-revert): Use plstore--init-from-buffer.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/plstore.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog	2011-07-01 01:25:21 +0000
+++ b/lisp/gnus/ChangeLog	2011-07-01 01:34:38 +0000
 <at>  <at>  -1,5 +1,13  <at>  <at> 
 2011-07-01  Daiki Ueno  <ueno <at> unixuser.org>

+	* plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.
+	(plstore-save): Support public key encryption.
+	(plstore--init-from-buffer): New function.
+	(plstore-open): Use it; fix error when opening a non-existent file.
+	(plstore-revert): Use plstore--init-from-buffer.
+
(Continue reading)

Stefan Monnier | 1 Jul 2011 05:15
Picon

/srv/bzr/emacs/trunk r104825: * lisp/emacs-lisp/find-func.el (find-library--load-name): New fun.

------------------------------------------------------------
revno: 104825
fixes bug(s): http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8803
committer: Stefan Monnier <monnier <at> iro.umontreal.ca>
branch nick: trunk
timestamp: Thu 2011-06-30 23:15:02 -0400
message:
  * lisp/emacs-lisp/find-func.el (find-library--load-name): New fun.
  (find-library-name): Use it to find relative load names when provided
  absolute file name.
modified:
  lisp/ChangeLog
  lisp/emacs-lisp/find-func.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog	2011-06-30 23:19:45 +0000
+++ b/lisp/ChangeLog	2011-07-01 03:15:02 +0000
 <at>  <at>  -1,3 +1,9  <at>  <at> 
+2011-07-01  Stefan Monnier  <monnier <at> iro.umontreal.ca>
+
+	* emacs-lisp/find-func.el (find-library--load-name): New fun.
+	(find-library-name): Use it to find relative load names when provided
+	absolute file name (bug#8803).
+
 2011-06-30  Lars Magne Ingebrigtsen  <larsi <at> gnus.org>

 	* textmodes/flyspell.el (flyspell-word): Consider words that
 <at>  <at>  -14,7 +20,7  <at>  <at> 

(Continue reading)

Chong Yidong | 1 Jul 2011 05:38
Favicon

/srv/bzr/emacs/trunk r104827: * eshell/em-smart.el (eshell-smart-display-navigate-list): Add mouse-yank-primary.

------------------------------------------------------------
revno: 104827
committer: Chong Yidong <cyd <at> stupidchicken.com>
branch nick: trunk
timestamp: Thu 2011-06-30 23:38:28 -0400
message:
  * eshell/em-smart.el (eshell-smart-display-navigate-list): Add mouse-yank-primary.
modified:
  lisp/ChangeLog
  lisp/eshell/em-smart.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog	2011-07-01 03:29:50 +0000
+++ b/lisp/ChangeLog	2011-07-01 03:38:28 +0000
 <at>  <at>  -1,3 +1,8  <at>  <at> 
+2011-07-01  Chong Yidong  <cyd <at> stupidchicken.com>
+
+	* eshell/em-smart.el (eshell-smart-display-navigate-list): Add
+	mouse-yank-primary.
+
 2011-07-01  Teodor Zlatanov  <tzz <at> lifelogs.com>

 	* progmodes/cfengine3.el: New file to support CFEngine 3.x.

=== modified file 'lisp/eshell/em-smart.el'
--- a/lisp/eshell/em-smart.el	2011-03-05 04:11:05 +0000
+++ b/lisp/eshell/em-smart.el	2011-07-01 03:38:28 +0000
 <at>  <at>  -120,6 +120,7  <at>  <at> 
 (defcustom eshell-smart-display-navigate-list
(Continue reading)

Katsumi Yamaoka | 1 Jul 2011 06:08
Favicon
Gravatar

/srv/bzr/emacs/trunk r104829: gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.

------------------------------------------------------------
revno: 104829
committer: Katsumi Yamaoka <yamaoka <at> jpl.org>
branch nick: trunk
timestamp: Fri 2011-07-01 04:08:50 +0000
message:
  gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-draft.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog	2011-07-01 01:34:38 +0000
+++ b/lisp/gnus/ChangeLog	2011-07-01 04:08:50 +0000
 <at>  <at>  -1,3 +1,7  <at>  <at> 
+2011-07-01  Katsumi Yamaoka  <yamaoka <at> jpl.org>
+
+	* gnus-draft.el (gnus-draft-clear-marks): Mark deleted articles as read.
+
 2011-07-01  Daiki Ueno  <ueno <at> unixuser.org>

 	* plstore.el (plstore-select-keys, plstore-encrypt-to): New variable.

=== modified file 'lisp/gnus/gnus-draft.el'
--- a/lisp/gnus/gnus-draft.el	2011-04-15 12:42:51 +0000
+++ b/lisp/gnus/gnus-draft.el	2011-07-01 04:08:50 +0000
 <at>  <at>  -325,10 +325,18  <at>  <at> 
 	(error "The draft %s is under edit" file)))))

(Continue reading)


Gmane