From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.help Subject: Re: How do I find docs for a given library? (minor mode?) Date: Mon, 26 Mar 2007 10:29:01 +0200 Organization: sometimes Message-ID: <87lkhkh0he.fsf@ambire.localdomain> References: <1174508036.020011.311140@d57g2000hsg.googlegroups.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1174905532 14104 80.91.229.12 (26 Mar 2007 10:38:52 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 26 Mar 2007 10:38:52 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 26 12:38:44 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HVmb5-0006Bf-Sz for geh-help-gnu-emacs@m.gmane.org; Mon, 26 Mar 2007 12:38:44 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HVmdJ-0004j8-Vq for geh-help-gnu-emacs@m.gmane.org; Mon, 26 Mar 2007 05:41:02 -0500 Original-Path: shelby.stanford.edu!newshub.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!uio.no!quimby.gnus.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 13 Original-NNTP-Posting-Host: ppp-188-32.21-151.libero.it Original-X-Trace: quimby.gnus.org 1174901457 20190 151.21.32.188 (26 Mar 2007 09:30:57 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: Mon, 26 Mar 2007 09:30:57 +0000 (UTC) User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.95 (gnu/linux) Cancel-Lock: sha1:iGkTuIJfWVDbOkoZGiJBwFFKDi8= Original-Xref: shelby.stanford.edu gnu.emacs.help:146590 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:42198 Archived-At: jmg3000@gmail.com writes: > How do I find the docs for a library after I load it? For example, I > loaded htmlize (`M-x load-library RET htmlize RET') and would like to > see a listing of all the available docs that it comes with. some packages do not have separate documentation. luckily, the htmlize Commentary (stylized comments in the source code) is relatively complete. you can access it with `M-x finder-commentary RET htmlize RET'. then try `M-x apropos ^htmlize- RET' for docs on funcs and vars. thi