bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: supercite bugfix.


From: Kevin Rodgers
Subject: Re: supercite bugfix.
Date: Fri, 19 Nov 2004 13:01:26 -0700
User-agent: Mozilla Thunderbird 0.9 (X11/20041105)

Andrey Slusar wrote:
> See:
> ,----[ C-h v sc-cite-frame-alist RET ]
> | `sc-cite-frame-alist' is a variable declared in Lisp.
> |   -- loaded from "supercite"
> |
> | Value: nil
> |
> | Documentation:
> | *Alist for frame selection during citing.
> | Each element of this list has the following form:
> |
> |    (INFOKEY ((REGEXP . FRAME)
> |              (REGEXP . FRAME)
> |              (...)))
> |
> | Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
> | expression to match against the INFOKEY's value.  FRAME is a citation
> | frame, or a variable containing a citation frame.
> `----
> If FRAME is a variable containing a citation frame, when running
> (sc-scan-info-alist 'FRAME). This is a bug.
>
>  Patch, fixed this bug:
>
> --- lisp/ChangeLog.orig    Fri Nov 19 14:54:39 2004
> +++ lisp/ChangeLog Fri Nov 19 14:58:40 2004
> @@ -0,0 +1,5 @@
> +2004-11-19  Andrey Slusar  <anray@inet.ua>
> +
> +  * mail/supercite.el (sc-cite-region): Fix bug, when FRAME is a variable
> +  containing a citation frame.
> +

sc-uncite-frame-alist and sc-recite-frame-alist may also contain
variables, so the sc-uncite-region and sc-recite-region functions need
the same fix.  And since the sc-*cite-region functions are 3 of the 4
uses of sc-scan-info-alist in the Emacs distribution, it's easier to
just fix it once there (and make sure the symbol is bound, as well, to
avoid throwing an error):


2004-11-19  Kevin Rodgers  <ihs_46642yahoo.com>

        * supercite.el (sc-scan-info-alist): Accept optional
          FRAME-VARIABLE argument, to handle sc-cite-frame-alist,
          sc-uncite-frame-alist, and sc-recite-frame-alist entries.
          (sc-cite-region, sc-uncite-region, sc-recite-region): Pass
          non-nil FRAME-VARIABLE arg to sc-scan-info-alist.


*** emacs-21.3/lisp/mail/supercite.el~  Mon Oct 29 02:08:16 2001
--- emacs-21.3/lisp/mail/supercite.el   Fri Nov 19 12:49:11 2004
***************
*** 753,760 ****
         (deallocate-event event))
      p))

! (defun sc-scan-info-alist (alist)
!   "Find a match in the info alist that matches a regexp in ALIST."
    (let ((sc-mumble "")
        rtnvalue)
      (while alist
--- 753,762 ----
         (deallocate-event event))
      p))

! (defun sc-scan-info-alist (alist &optional frame-variable)
!   "Find a match in the info alist that matches a regexp in ALIST.
! If FRAME-VARIABLE is non-nil and the match is a bound symbol, return its
! value instead (see `sc-cite-frame-alist')."
    (let ((sc-mumble "")
        rtnvalue)
      (while alist
***************
*** 776,781 ****
--- 778,785 ----
              )))                       ;end of mlist loop
        (setq alist (cdr alist))
        ))                              ;end of alist loop
+     (when (and frame-variable (symbolp rtnvalue) (boundp rtnvalue))
+       (setq rtnvalue (symbol-value rtnvalue)))
      rtnvalue))

  
***************
*** 1524,1530 ****
  `sc-pre-cite-hook'."
    (interactive "r\nP")
    (undo-boundary)
!   (let ((frame (or (sc-scan-info-alist sc-cite-frame-alist)
                   sc-default-cite-frame))
        (sc-confirm-always-p (if confirm-p t sc-confirm-always-p)))
      (run-hooks 'sc-pre-cite-hook)
--- 1528,1534 ----
  `sc-pre-cite-hook'."
    (interactive "r\nP")
    (undo-boundary)
!   (let ((frame (or (sc-scan-info-alist sc-cite-frame-alist t)
                   sc-default-cite-frame))
        (sc-confirm-always-p (if confirm-p t sc-confirm-always-p)))
      (run-hooks 'sc-pre-cite-hook)
***************
*** 1537,1543 ****
  First runs `sc-pre-uncite-hook'."
    (interactive "r")
    (undo-boundary)
!   (let ((frame (or (sc-scan-info-alist sc-uncite-frame-alist)
                   sc-default-uncite-frame)))
      (run-hooks 'sc-pre-uncite-hook)
      (regi-interpret frame start end)))
--- 1541,1547 ----
  First runs `sc-pre-uncite-hook'."
    (interactive "r")
    (undo-boundary)
!   (let ((frame (or (sc-scan-info-alist sc-uncite-frame-alist t)
                   sc-default-uncite-frame)))
      (run-hooks 'sc-pre-uncite-hook)
      (regi-interpret frame start end)))
***************
*** 1549,1555 ****
    (let ((sc-confirm-always-p t))
      (sc-select-attribution))
    (undo-boundary)
!   (let ((frame (or (sc-scan-info-alist sc-recite-frame-alist)
                   sc-default-recite-frame)))
      (run-hooks 'sc-pre-recite-hook)
      (regi-interpret frame start end)))
--- 1553,1559 ----
    (let ((sc-confirm-always-p t))
      (sc-select-attribution))
    (undo-boundary)
!   (let ((frame (or (sc-scan-info-alist sc-recite-frame-alist t)
                   sc-default-recite-frame)))
      (run-hooks 'sc-pre-recite-hook)
      (regi-interpret frame start end)))

--
Kevin Rodgers




reply via email to

[Prev in Thread] Current Thread [Next in Thread]