From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Richard Newsgroups: gmane.emacs.help Subject: Re: A debugging puzzle with XML Date: Thu, 29 Jan 2015 11:46:39 +0100 Message-ID: <87h9v9ampc.fsf@yahoo.fr> References: <87a912ernj.fsf@wmi.amu.edu.pl> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1422528432 29199 80.91.229.3 (29 Jan 2015 10:47:12 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 29 Jan 2015 10:47:12 +0000 (UTC) Cc: Help Gnu Emacs mailing list To: Marcin Borkowski Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Jan 29 11:47:10 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 1YGmcu-00021I-J4 for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Jan 2015 11:47:08 +0100 Original-Received: from localhost ([::1]:58846 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGmct-0002ua-M1 for geh-help-gnu-emacs@m.gmane.org; Thu, 29 Jan 2015 05:47:07 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58168) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGmci-0002uU-CH for help-gnu-emacs@gnu.org; Thu, 29 Jan 2015 05:46:57 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YGmcd-00024W-DP for help-gnu-emacs@gnu.org; Thu, 29 Jan 2015 05:46:56 -0500 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:18770) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YGmcd-00024E-5K for help-gnu-emacs@gnu.org; Thu, 29 Jan 2015 05:46:51 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: An0FAEUPylSkD4Xx/2dsb2JhbABaDoQjgjKvXwEBAQEBAQaYMAKBYQEBAQEBfYQNAQV5EAgDDhMlDwEESROIFwEUwgWOCwGGBgEBCAIBH4YEgiqHSgeEKQWYFoYpjB0igzE+PTGCQgEBAQ Original-Received: from mathsrv4.ulb.ac.be (HELO localhost) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 29 Jan 2015 11:46:23 +0100 In-Reply-To: <87a912ernj.fsf@wmi.amu.edu.pl> (Marcin Borkowski's message of "Wed, 28 Jan 2015 18:33:52 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 164.15.128.112 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:102356 Archived-At: Marcin Borkowski writes: > (require 'xmlgen) > (with-temp-file "foo.xml" > (insert (xmlgen '(hello (world (of (xml) "!"))))) > (sgml-pretty-print (point-min) (point-max))) > > and answer this question: where have all the indents go? Ok let's play the game (i.e. I didn't try) : My guess is that since `with-temp-file' doesn't set the major mode (i.e. it will be fundamental-mode), there are local variables which are not set as sgml-pretty-print would expect. -- Nicolas Richard