From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.help Subject: Re: About setf extensions Date: Fri, 15 Feb 2013 09:48:04 -0500 Organization: A noiseless patient Spider Message-ID: References: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1360950840 15509 80.91.229.3 (15 Feb 2013 17:54:00 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 15 Feb 2013 17:54:00 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Feb 15 18:54:22 2013 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 1U6PUK-00018l-P4 for geh-help-gnu-emacs@m.gmane.org; Fri, 15 Feb 2013 18:54:20 +0100 Original-Received: from localhost ([::1]:57808 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U6Owz-0000ok-14 for geh-help-gnu-emacs@m.gmane.org; Fri, 15 Feb 2013 12:19:53 -0500 Original-Path: usenet.stanford.edu!news.glorb.com!feeder.erje.net!eu.feeder.erje.net!news2.arglkargh.de!news.mixmin.net!eternal-september.org!feeder.eternal-september.org!mx05.eternal-september.org!.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 13 Injection-Info: mx05.eternal-september.org; posting-host="bfd39ab85c09fa5e53648fe03e26b156"; logging-data="24969"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19x2Y/KMRZUaBpmNh0/ppAT" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) Cancel-Lock: sha1:a0PNfYFmeLto39kGjjnB0QL+IoM= sha1:ksJLwTMidxqMra6xlj1NyxRFYAQ= Original-Xref: usenet.stanford.edu gnu.emacs.help:196826 X-Mailman-Approved-At: Fri, 15 Feb 2013 12:19:49 -0500 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:89115 Archived-At: > Most of these have directly corresponding "set" functions, like > `use-local-map' for `current-local-map', or `goto-char' for > `point'. A few, like `point-min', expand to longer sequences of > code when they are used with `setf' (`(narrow-to-region x > (point-max))' in this case). > I don't understand the `point-min' example. What does the "x" mean > here? (setf (point-min) x) gets turned into (narrow-to-region x (point-max)). Stefan