On Sun, 13 Apr 2008 06:15:13 +0300, Giorgos Keramidas <[EMAIL PROTECTED]> wrote:
>>   This command can only be used in the summary buffer
>
> Got it, sorry for posting too fast.  Making gnus-summary-buffer the
> current buffer works [...]

>   (defun keramida-alter-summary-map ()
>     (local-set-key "e"
>       (lambda (n)
>         (interactive "p")
>         (gnus-summary-put-mark-as-expirable-next n)))
>     (local-set-key "E" 'gnus-summary-edit-article))

I pasted the wrong version.  There should also be a call to
with-current-buffer around gnus-summary-put-mark-as-expirable-next:

    (with-current-buffer gnus-summary-buffer
      (gnus-summary-put-mark-as-expirable-next n))

_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to