Your message dated Wed, 10 Sep 2008 01:47:04 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#456592: fixed in emacs-goodies-el 29.4-1
has caused the Debian Bug report #456592,
regarding markdown-mode: blockquote-region only works if the region was 
selected with the mouse.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
456592: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=456592
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: emacs-goodies-el
Version: 29.0-1
Severity: normal

  In markdown-mode, if I select a region with the mouse and run
blockquote-region, the region is blockquoted.  But if I select
a region with the keyboard (C-space, move) and run blockquote-region,
the region is not blockquoted.  The code of blockquote-region is:

(defun blockquote-region ()
  "Blockquote an entire region."
  (interactive)
  (if (and (boundp 'transient-mark-mode) transient-mark-mode mark-active)
      (perform-replace "^" "> " nil 1 nil nil nil (region-beginning) 
(region-end))))

  I'm not an elisp hacker, but it looks to me like the problem may be
the check against transient-mark-mode.  If I remove that "if" entirely,
blockquote-region behaves as expected; i.e., I suggest using the
following code:

(defun blockquote-region ()
  "Blockquote an entire region."
  (interactive)
  (perform-replace "^" "> " nil 1 nil nil nil (region-beginning) (region-end)))

  This is more in line with how other emacs commands work (e.g.,
sort-lines or comment-region).

  Daniel

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages emacs-goodies-el depends on:
ii  bash                         3.1dfsg-8   The GNU Bourne Again SHell
ii  emacs [emacsen]              22.1+1-2.3  The GNU Emacs editor (metapackage)
ii  emacs21 [emacsen]            21.4a+1-5.3 The GNU Emacs editor
ii  emacs22-gtk [emacsen]        22.1+1-2.3  The GNU Emacs editor (with GTK use

Versions of packages emacs-goodies-el recommends:
ii  dict                     1.10.2.dfsg-3.2 Dictionary Client
ii  perl-doc                 5.8.8-12        Perl documentation
ii  wget                     1.10.2-3        retrieves files from the web

-- no debconf information



--- End Message ---
--- Begin Message ---
Source: emacs-goodies-el
Source-Version: 29.4-1

We believe that the bug you reported is fixed in the latest version of
emacs-goodies-el, which is due to be installed in the Debian FTP archive:

debian-el_29.4-1_all.deb
  to pool/main/e/emacs-goodies-el/debian-el_29.4-1_all.deb
devscripts-el_29.4-1_all.deb
  to pool/main/e/emacs-goodies-el/devscripts-el_29.4-1_all.deb
dpkg-dev-el_29.4-1_all.deb
  to pool/main/e/emacs-goodies-el/dpkg-dev-el_29.4-1_all.deb
emacs-goodies-el_29.4-1.diff.gz
  to pool/main/e/emacs-goodies-el/emacs-goodies-el_29.4-1.diff.gz
emacs-goodies-el_29.4-1.dsc
  to pool/main/e/emacs-goodies-el/emacs-goodies-el_29.4-1.dsc
emacs-goodies-el_29.4-1_all.deb
  to pool/main/e/emacs-goodies-el/emacs-goodies-el_29.4-1_all.deb
emacs-goodies-el_29.4.orig.tar.gz
  to pool/main/e/emacs-goodies-el/emacs-goodies-el_29.4.orig.tar.gz
gnus-bonus-el_29.4-1_all.deb
  to pool/main/e/emacs-goodies-el/gnus-bonus-el_29.4-1_all.deb
vm-bonus-el_29.4-1_all.deb
  to pool/main/e/emacs-goodies-el/vm-bonus-el_29.4-1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Peter S Galbraith <[EMAIL PROTECTED]> (supplier of updated emacs-goodies-el 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.8
Date: Tue, 09 Sep 2008 21:28:31 -0400
Source: emacs-goodies-el
Binary: emacs-goodies-el gnus-bonus-el devscripts-el debian-el dpkg-dev-el 
vm-bonus-el
Architecture: source all
Version: 29.4-1
Distribution: unstable
Urgency: high
Maintainer: Peter S Galbraith <[EMAIL PROTECTED]>
Changed-By: Peter S Galbraith <[EMAIL PROTECTED]>
Description: 
 debian-el  - Emacs helpers specific to Debian users
 devscripts-el - Emacs wrappers for the commands in devscripts
 dpkg-dev-el - Emacs helpers specific to Debian development
 emacs-goodies-el - Miscellaneous add-ons for Emacs
 gnus-bonus-el - Miscellaneous add-ons for Gnus
 vm-bonus-el - Miscellaneous add-ons for VM
Closes: 456592 463053
Changes: 
 emacs-goodies-el (29.4-1) unstable; urgency=high
 .
   * debian-el:
     - debian-bug.el:
       Bug fix: "Bug submenus have vanished", thanks to Bill Wohler for the
       report and to Camm Maguire for an initial patch (Closes: #463053).
       This _should_ go in lenny; I have only changed code that was currently
       broken under the new Debian bug web page format.
   * emacs-goodies-el:
     - markdown-mode.el: Thanks to Jason Blevins for the new upstream version
       1.6. It fixes "blockquote-region only works if the region was selected
       with the mouse" submitted by Daniel Burrows (Closes: #456592).
Checksums-Sha1: 
 02288b34e3b11ca642910097e64452cd566a7b6f 1425 emacs-goodies-el_29.4-1.dsc
 2194550533e893d8bf688a10c0c3b6e0ab1230a3 1062712 
emacs-goodies-el_29.4.orig.tar.gz
 b955cac32ba768f6a6f58d22f1919e7137346391 108781 emacs-goodies-el_29.4-1.diff.gz
 849f279204086332b1c578f97839d044f9e06ecd 964922 emacs-goodies-el_29.4-1_all.deb
 f71b21d6a2b672d50f74a8f42299d436292a28f6 75978 gnus-bonus-el_29.4-1_all.deb
 9a6d66aa09e30f7d264b963863000a1c1d0ca0ec 35986 devscripts-el_29.4-1_all.deb
 8bad6b23dfb308dba9360d7bf1aa28f2f2143aaa 90500 debian-el_29.4-1_all.deb
 86c3ed4257e36f5d61ade000bbbaef8be160f0cc 68118 dpkg-dev-el_29.4-1_all.deb
 ad9eb66b632830214bc68905dab587a1f0a91a76 37392 vm-bonus-el_29.4-1_all.deb
Checksums-Sha256: 
 97109ef2cf8ad74cd282960d41f2889975bf8aeec25a38381cfb8fffdcbe4c54 1425 
emacs-goodies-el_29.4-1.dsc
 d915a006a90ba4fc1da61f566e0259922ddace958f214748d5620b1b89bed191 1062712 
emacs-goodies-el_29.4.orig.tar.gz
 04ffd98a55a696ffe3b7cd7e8343cc547983163adf8d2135113bcc56dc7e98ea 108781 
emacs-goodies-el_29.4-1.diff.gz
 f9123b5fce2da44a5b27e54f113584380f1e2cbfd24c192e9b88202054dd2b90 964922 
emacs-goodies-el_29.4-1_all.deb
 f8f4cf900ab78366eacfb5c335dbd1521295b808ffb1dca7c8dc9eaf66f9bb3b 75978 
gnus-bonus-el_29.4-1_all.deb
 f7c82056ab7f2e46cbe6e9f9420e477be2404c6399d8688d472ddf1c33396639 35986 
devscripts-el_29.4-1_all.deb
 00562427f821a1966b0fdea040fd18c5e917df53def1c5ecc721a2f877783170 90500 
debian-el_29.4-1_all.deb
 2ce8d49f0bb46f6a58682fcf8561e07723b47f12faa4b699e9ff2dc22ed0f1ba 68118 
dpkg-dev-el_29.4-1_all.deb
 015925806964582dcfc86af4c2184eac3c17a25f1aa2c0864f9f02caf5dae692 37392 
vm-bonus-el_29.4-1_all.deb
Files: 
 283d63603091803826432785a31f3ae7 1425 editors optional 
emacs-goodies-el_29.4-1.dsc
 c767abbc8ec864d703867fbf6313de2e 1062712 editors optional 
emacs-goodies-el_29.4.orig.tar.gz
 84b81eccd325b0475adddea4add9a9f4 108781 editors optional 
emacs-goodies-el_29.4-1.diff.gz
 29296b3ef43ea13fd16b65b56b6a1541 964922 editors optional 
emacs-goodies-el_29.4-1_all.deb
 55cc9e54822d14a166c398bbaeacd84a 75978 news optional 
gnus-bonus-el_29.4-1_all.deb
 416ebb26d6bd255b58f29357b03a3214 35986 editors optional 
devscripts-el_29.4-1_all.deb
 abae160b5db3e0ae5303170497f30d77 90500 utils optional debian-el_29.4-1_all.deb
 ea2c845096daa8cabbc0ea62b7674bf7 68118 utils optional 
dpkg-dev-el_29.4-1_all.deb
 47ef4e8f4f4913e0c05120d44499f4d1 37392 mail optional vm-bonus-el_29.4-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iQCVAwUBSMcjBrwVH8jSqROhAQJ5hgP9G3vqHKyICpS/d7vq6S2xpUdVgEy1PADz
k62zOxAPQl6cveMeWrDdl9Y7iquU2qx8FjOU8LUWQ2C4IQVP9zDHzreWziSpbp0N
zJxGgzhfpRG8OkEzHB1KcdHWfLlNkx2ETB2rXzpOsWW6BShe+CGiLwxcGUR6idgg
lU5To9Nv5kw=
=wztx
-----END PGP SIGNATURE-----



--- End Message ---

Reply via email to