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: Generating a listing of all symbols (16K+) and labeling subsets Date: Wed, 23 Apr 2014 08:07:33 -0700 (PDT) Message-ID: <4b161044-0b87-46e3-b46a-35993331edcb@default> References: <<38d1beb3-fffd-4718-ae10-be9646ac4a63@googlegroups.com> <51a18e1e-5537-466a-afcc-baa34235d5a6@googlegroups.com>> <<874n1klchv.fsf@bertrandrussell.Speedport_W_723V_1_32_000>> 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 1398265703 27083 80.91.229.3 (23 Apr 2014 15:08:23 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 23 Apr 2014 15:08:23 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: "Florian v. Savigny" , Hans BKK Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Apr 23 17:08:15 2014 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 1WcymT-0006pT-4W for geh-help-gnu-emacs@m.gmane.org; Wed, 23 Apr 2014 17:08:13 +0200 Original-Received: from localhost ([::1]:33248 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WcymS-0000hj-KP for geh-help-gnu-emacs@m.gmane.org; Wed, 23 Apr 2014 11:08:12 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:54047) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wcym6-0000hD-Ph for help-gnu-emacs@gnu.org; Wed, 23 Apr 2014 11:07:59 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wcyly-00019v-3Q for help-gnu-emacs@gnu.org; Wed, 23 Apr 2014 11:07:50 -0400 Original-Received: from userp1040.oracle.com ([156.151.31.81]:30937) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wcylx-00019o-T1 for help-gnu-emacs@gnu.org; Wed, 23 Apr 2014 11:07:42 -0400 Original-Received: from acsinet21.oracle.com (acsinet21.oracle.com [141.146.126.237]) by userp1040.oracle.com (Sentrion-MTA-4.3.2/Sentrion-MTA-4.3.2) with ESMTP id s3NF7ZAr031071 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Wed, 23 Apr 2014 15:07:37 GMT Original-Received: from userz7021.oracle.com (userz7021.oracle.com [156.151.31.85]) by acsinet21.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s3NF7YiE024845 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Wed, 23 Apr 2014 15:07:35 GMT Original-Received: from abhmp0004.oracle.com (abhmp0004.oracle.com [141.146.116.10]) by userz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id s3NF7Ydu010775; Wed, 23 Apr 2014 15:07:34 GMT In-Reply-To: <<874n1klchv.fsf@bertrandrussell.Speedport_W_723V_1_32_000>> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.8 (707110) [OL 12.0.6691.5000 (x86)] X-Source-IP: acsinet21.oracle.com [141.146.126.237] 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:97329 Archived-At: > If you have icicle-mode, apparently, list-hh-symbols fails: > "Symbol's function definition is void: cycle-icicle-image-file-thumbnail"= . This was a bug - a copy+paste typo. This was the code: (defalias 'cycle-icicle-image-file-thumbnail 'icicle-toggle-show-image-file-thumbnail) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ (defun icicle-cycle-image-file-thumbnail ...) The part underlined ^^^ should be icicle-cycle-image-file-thumbnail. Fixed now. So in addition to whatever help Hans's exercise has provided him and others wrt learning Emacs, this thread has at least had the added benefit of reporting this Icicles bug. ;-) Thx.