Browse Source

fixed functional bug in mew (configuration of cite behaviour)

git-svn-id: http://www.rocklinux.org/svn/rock-linux/trunk@1375 c5f82cb5-29bc-0310-9cd0-bff59a50e3bc
rocklinux
Rene Rebe 21 years ago
parent
commit
119b9bcbb3
2 changed files with 19 additions and 0 deletions
  1. +1
    -0
      Documentation/Developers/CHANGELOG-RENE
  2. +18
    -0
      package/rene/mew/fix-cite-config-bug.patch

+ 1
- 0
Documentation/Developers/CHANGELOG-RENE

@ -7,6 +7,7 @@
- fixed modutils to install the lsmod into $root/bin (as module-init-tools
do)
- improved svn-static to include the $arch_machine into the binary name
- fixed functional bug in mew
*) 2003-09-09 (2.0.0-rc1 - 2.0.0-rc2)

+ 18
- 0
package/rene/mew/fix-cite-config-bug.patch

@ -0,0 +1,18 @@
This fixes a logic bug to make the cite behaviour configurable.
- Rene Rebe <rene@rocklinux.org>
--- mew-3.3/mew-draft.el 2003-06-19 05:58:13.000000000 +0000
+++ mew-3.3-fixed/mew-draft.el 2003-09-11 17:49:10.000000000 +0000
@@ -499,8 +499,8 @@
(let ((mark-active t) (transient-mark-mode nil))
(cond
;; arg will be effect in mew-cite-original
- ((and (mew-mark) (or (not mew-cite-ignore-mouse-region)
- (not (mew-mouse-region-p))))
+ ((and (mew-mark) (and (not mew-cite-ignore-mouse-region)
+ (not (mew-mouse-region-p))))
(setq beg (region-beginning) end (region-end)))
((mew-header-p)
;; header exists in Message mode. Skip the header

Loading…
Cancel
Save