19 lines
680 B
Plaintext
19 lines
680 B
Plaintext
$NetBSD: patch-ab,v 1.1 2003/02/12 15:53:09 yyamano Exp $
|
|
|
|
--- src/zenicb-example.el.orig Mon Jul 20 07:12:55 1998
|
|
+++ src/zenicb-example.el
|
|
@@ -89,10 +89,11 @@
|
|
;;; insert time-stamps into the buffer at least every 10 minutes.
|
|
(load-library "zenicb-stamp")
|
|
|
|
-;;; fsf emacs doesn't have read-passwd
|
|
+;;; fsf emacs 18.x and 19.x don't have read-passwd
|
|
(cond ((= (string-to-int emacs-version) 18)
|
|
(fset 'read-passwd 'read-from-minibuffer))
|
|
- ((not (string-match "XEmacs" emacs-version))
|
|
+ ((and (not (string-match "XEmacs" emacs-version))
|
|
+ (= (string-to-int emacs-version) 19))
|
|
(require 'ange-ftp)
|
|
(fset 'read-passwd 'ange-ftp-read-passwd)))
|
|
|