# HG changeset patch # User Kim F. Storm # Date 1095063502 0 # Node ID a74474ba690a2789fe8a295fcb0aa3dec77406e9 # Parent e7937a30d254ca35e30cf1687c79f9fa03b04639 (isearch-resume-in-command-history): Rename from isearch-resume-enabled and change default to nil. diff -r e7937a30d254 -r a74474ba690a lisp/isearch.el --- a/lisp/isearch.el Mon Sep 13 08:17:56 2004 +0000 +++ b/lisp/isearch.el Mon Sep 13 08:18:22 2004 +0000 @@ -146,8 +146,10 @@ :type 'boolean :group 'isearch) -(defcustom isearch-resume-enabled t - "*If non-nil, `isearch-resume' commands are added to the command history." +(defcustom isearch-resume-in-command-history nil + "*If non-nil, `isearch-resume' commands are added to the command history. +This allows you to resume earlier isearch sessions through the +command history." :type 'boolean :group 'isearch) @@ -651,7 +653,7 @@ (setq disable-point-adjustment t)) (defun isearch-done (&optional nopush edit) - (if isearch-resume-enabled + (if isearch-resume-in-command-history (let ((command `(isearch-resume ,isearch-string ,isearch-regexp ,isearch-word ,isearch-forward ,isearch-message