From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Jeremy Bryant Newsgroups: gmane.emacs.devel Subject: Re: Question on set-window-margins Date: Wed, 03 Jan 2024 21:52:25 +0000 Message-ID: <87r0iy5bfo.fsf@jeremybryant.net> References: <83il4bzgmk.fsf@gnu.org> <83h6jvyu9p.fsf@gnu.org> <5FC2FDA6-CB7F-4285-958E-EC8595FC66AE@gmail.com> <834jfuzhg1.fsf@gnu.org> <83sf3ext3r.fsf@gnu.org> <83o7e2xr52.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="24999"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Eli Zaretskii , casouri@gmail.com, emacs-devel@gnu.org To: "Nicolas P. Rougier (inria)" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Jan 03 22:56:52 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rL9EJ-0006HV-82 for ged-emacs-devel@m.gmane-mx.org; Wed, 03 Jan 2024 22:56:51 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rL9DN-0005ZL-Ug; Wed, 03 Jan 2024 16:55:53 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rL9DL-0005Yx-8R for emacs-devel@gnu.org; Wed, 03 Jan 2024 16:55:52 -0500 Original-Received: from out-172.mta0.migadu.com ([91.218.175.172]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rL9DI-0005PU-8D for emacs-devel@gnu.org; Wed, 03 Jan 2024 16:55:51 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=jeremybryant.net; s=key1; t=1704318942; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=dIOe+sVW+5UoROMOY16s9GJBqLxsA/KQEZYLVnSHor0=; b=LsUlbZDKFrhKzbcHRWd47Plnwj2M9e1gbtwCy6kxcoXM7Rr/jEuO9QCEcHfJLvpGFsAlbX ODjCsbBsWYAMItzZrV4wZxgdDkGhmitcskmjVnkdNHdFGdcCeo2uUf6j3RL1mvCzGVjOkB f7tRy74DHiygmQGaoLNG550ZPU3754XmoFEI01M8Xqq52aC/wiF87bCtehvGV8k4qUayW9 Ot954I5B32cNsRiAOFw6TOv4s5k+eXn+Q/xgQUrPX8w8L1vVd5eC0wFe1JcyZFA/tIIZyK zidcqQJrxdynYrfw1CJkREv1kaeva85gLNfRYh3CZhomlNjtvZI+2HaVC7Ghjg== X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. In-reply-to: X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=91.218.175.172; envelope-from=jb@jeremybryant.net; helo=out-172.mta0.migadu.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=unavailable autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:314511 Archived-At: Nicolas, you may be also interested in the following convenient way to access the relevant manual (rather than the docstring) C-h S set-window-margins Because C-h S is bound to info-lookup-symbol. " Look up and display documentation of SYMBOL in the relevant Info manual. SYMBOL should be an identifier: a function or method, a macro, a variable, a data type, a class, etc. " I hope this is a useful suggestion "Nicolas P. Rougier (inria)" writes: > Eli Zaretskii [2024-01-03 at 19:28] wrote: >> That's not the manual from which to learn this stuff. > > C-h f describe-function > > Display the full documentation of FUNCTION (a symbol). > When called from Lisp, FUNCTION may also be a function object. > > Nicolas