+2001-06-28 Stefan Monnier <monnier@cs.yale.edu>
+
+ * info.el (Info-clone-buffer-hook): Unconditionally copy marker.
+
2001-06-28 Karl Fogel <kfogel@red-bean.com>
* saveplace.el: Update maintainer email address.
2001-06-27 Francesco Potorti` <pot@gnu.org>
- * uniquify.el: (uniquify-rationalize-file-buffer-names): Undo
- previous change.
+ * uniquify.el: (uniquify-rationalize-file-buffer-names):
+ Undo previous change.
2001-06-27 Francesco Potorti` <pot@gnu.org>
2001-06-26 MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
- * mail/rmail.el (rmail-msg-restore-non-pruned-header): New
- function.
+ * mail/rmail.el (rmail-msg-restore-non-pruned-header): New function.
(rmail-msg-prune-header): Likewise.
(rmail-toggle-header): Use `rmail-msg-restore-non-pruned-header'
and `rmail-msg-prune-header'.
(setq Info-tag-table-buffer
(with-current-buffer Info-tag-table-buffer (clone-buffer)))
(let ((m Info-tag-table-marker))
- (when (and (markerp m) (marker-position m))
- (setq Info-tag-table-marker
- (with-current-buffer Info-tag-table-buffer
- (copy-marker (marker-position m))))))))
+ (setq Info-tag-table-marker
+ (if (and (markerp m) (marker-position m))
+ (with-current-buffer Info-tag-table-buffer
+ (copy-marker (marker-position m)))
+ (make-marker))))))
(defvar Info-edit-map (let ((map (make-sparse-keymap)))
(set-keymap-parent map text-mode-map)