From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Drew Adams Newsgroups: gmane.emacs.help Subject: RE: Delete Help Window - restore window config Date: Wed, 28 Jan 2015 12:40:04 -0800 (PST) Message-ID: <53977253-bb92-4f40-87e8-348c25f8955c@default> References: <20150128035737.GA1459@mail.akwebsoft.com> <20150128163414.GD1459@mail.akwebsoft.com> <3b9f0718-d5b8-4c7f-b801-cb4ac717e7fb@default> <20150128184636.GF1459@mail.akwebsoft.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1422477632 14633 80.91.229.3 (28 Jan 2015 20:40:32 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 28 Jan 2015 20:40:32 +0000 (UTC) To: Tim Johnson , Emacs Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jan 28 21:40:32 2015 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1YGZPY-0003ke-I5 for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jan 2015 21:40:28 +0100 Original-Received: from localhost ([::1]:55876 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGZPY-00087Y-1R for geh-help-gnu-emacs@m.gmane.org; Wed, 28 Jan 2015 15:40:28 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGZPM-000878-3j for Help-gnu-emacs@gnu.org; Wed, 28 Jan 2015 15:40:17 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGZPI-0003HN-Qy for Help-gnu-emacs@gnu.org; Wed, 28 Jan 2015 15:40:16 -0500 Original-Received: from userp1040.oracle.com ([156.151.31.81]:34547) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGZPI-0003HD-Iy for Help-gnu-emacs@gnu.org; Wed, 28 Jan 2015 15:40:12 -0500 Original-Received: from ucsinet22.oracle.com (ucsinet22.oracle.com [156.151.31.94]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id t0SKe7Hq028066 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 28 Jan 2015 20:40:07 GMT Original-Received: from aserz7021.oracle.com (aserz7021.oracle.com [141.146.126.230]) by ucsinet22.oracle.com (8.14.5+Sun/8.14.5) with ESMTP id t0SKe6uF029413 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Wed, 28 Jan 2015 20:40:06 GMT Original-Received: from abhmp0013.oracle.com (abhmp0013.oracle.com [141.146.116.19]) by aserz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id t0SKe5wc026860; Wed, 28 Jan 2015 20:40:05 GMT In-Reply-To: <20150128184636.GF1459@mail.akwebsoft.com> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8.2 (807160) [OL 12.0.6691.5000 (x86)] X-Source-IP: ucsinet22.oracle.com [156.151.31.94] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 156.151.31.81 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:102344 Archived-At: > I presume that I could experiment with icicles without > 'require'ing it in .emacs by loading it from *scratch* > would that be the correct emacsen method? (Dunno what you mean by loading it from *scratch*.) Assuming all of the Icicles source files are in a directory that is in your `load-path', you can just use `M-x load-library icicles'. Or you can use `M-: (require 'icicles)'. Or if you downloaded Icicles as a package (e.g. from MELPA) then use the usual package-oriented ways of loading it. Something like this: (require 'package) (package-initialize) (add-to-list 'package-archives=20 '("melpa" . "http://melpa.milkbox.net/packages/") 'APPEND))