Hi there,

the use of delete-windows-on with 2 args in bbdb-mhe doesn't look like
an acciddent to me, but it sure doesn't work with lemacs 19.9.  Maybe
this is in FSFmacs or 19.10?

Cheers =8-} Chipsy

*** bbdb-mhe.el~        Sat Feb 19 10:38:17 1994
--- bbdb-mhe.el         Sat Feb 19 10:48:37 1994
***************
*** 207,213 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  (defadvice mh-inc-folder (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
--- 207,213 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  (defadvice mh-inc-folder (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
***************
*** 214,220 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  (defadvice mh-visit-folder (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
--- 214,220 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  (defadvice mh-visit-folder (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
***************
*** 221,227 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  (defadvice mh-previous-undeleted-msg (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
--- 221,227 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  (defadvice mh-previous-undeleted-msg (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
***************
*** 228,234 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  (defadvice mh-next-undeleted-msg (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
--- 228,234 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  (defadvice mh-next-undeleted-msg (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
***************
*** 235,241 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  (defadvice mh-delete-msg (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
--- 235,241 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  (defadvice mh-delete-msg (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
***************
*** 242,248 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  (defadvice mh-reply (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
--- 242,248 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  (defadvice mh-reply (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
***************
*** 249,255 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  (defadvice mh-forward (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
--- 249,255 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  (defadvice mh-forward (before mh-bbdb-use-pop-up act)
    "Turn off bbdb pop up window before the command.  Used for commands
***************
*** 256,262 ****
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name t)))
  
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;; mail from bbdb-mode using mh
--- 256,262 ----
  that (a) get confused by otherwindowness, and (b) will trigger a
  re-pop-up when they're done."
    (if (and mh-showing bbdb-use-pop-up)
!       (delete-windows-on bbdb-buffer-name)))
  
  ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  ;; mail from bbdb-mode using mh


Reply via email to