*** dist/vm-mime.el.dist Fri Jul 24 13:11:46 1998 --- vm-mime.el Fri Sep 4 11:32:49 1998 *************** *** 1057,1062 **** ((vm-mime-types-match "text/html" type) ! (condition-case () ! (progn (require 'w3) ! (fboundp 'w3-region)) ! (error nil))) (t nil)))) --- 1057,1059 ---- ((vm-mime-types-match "text/html" type) ! (fboundp 'w3-region)) (t nil)))) *************** *** 1341,1347 **** (vm-mime-convert-undisplayable-layout layout))) - ((and (or (vm-mime-types-match "message" type) - (vm-mime-types-match "text" type)) - ;; display unmatched message and text types as - ;; text/plain. - (vm-mime-display-internal-text/plain layout))) (t (and extent (vm-mime-rewrite-failed-button --- 1338,1339 ---- *************** *** 1482,1484 **** (while p ! (if (string-match "%f" (car p)) (setq append-file nil)) --- 1474,1476 ---- (while p ! (if (string-match "\\([^%]\\|^\\)%f" (car p)) (setq append-file nil)) *** dist/vm-mouse.el.dist Tue Jul 21 13:07:10 1998 --- vm-mouse.el Tue Sep 8 14:54:19 1998 *************** *** 200,201 **** --- 200,204 ---- (defun vm-mouse-send-url-to-netscape (url &optional new-netscape new-window) + ;; Change commas to %2C to avoid confusing Netscape -remote. + (while (string-match "," url) + (setq url (replace-match "%2C" nil t url))) (message "Sending URL to Netscape...") *** dist/vm-startup.el.dist Mon Aug 17 18:59:01 1998 --- vm-startup.el Wed Sep 9 10:43:15 1998 *************** *** 295,297 **** ! This is VM 6.61. --- 295,297 ---- ! This is VM 6.62. *** dist/vm-version.el.dist Mon Aug 17 18:59:03 1998 --- vm-version.el Wed Sep 9 10:43:15 1998 *************** *** 4,6 **** ! (defconst vm-version "6.61" "Version number of VM.") --- 4,6 ---- ! (defconst vm-version "6.62" "Version number of VM.")