From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: imaxima babel Date: Wed, 27 Nov 2013 19:42:21 -0500 Message-ID: <87fvqhl5le.fsf@gmail.com> References: <87li0htl9g.fsf@gmx.co.uk> <35517207.uS1ReSrXEG@descartes> <87ppptjd0s.fsf@gmail.com> <878uwgtlhq.fsf@gmx.co.uk> <87a9gvgk7l.fsf@gmail.com> <878uwaomnz.fsf@gmx.co.uk> <87vbzdmoex.fsf@gmx.co.uk> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58008) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vlpgs-0004rU-7b for emacs-orgmode@gnu.org; Wed, 27 Nov 2013 19:42:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vlpgm-00024f-R4 for emacs-orgmode@gnu.org; Wed, 27 Nov 2013 19:42:46 -0500 Received: from plane.gmane.org ([80.91.229.3]:41233) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vlpgm-00024R-Jm for emacs-orgmode@gnu.org; Wed, 27 Nov 2013 19:42:40 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Vlpgj-0002S4-6e for emacs-orgmode@gnu.org; Thu, 28 Nov 2013 01:42:37 +0100 Received: from pool-108-7-96-134.bstnma.fios.verizon.net ([108.7.96.134]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 Nov 2013 01:42:37 +0100 Received: from ndokos by pool-108-7-96-134.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 Nov 2013 01:42:37 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org writes: > Alan Schmitt writes: > > ... >> Finally, and it's a nitpick: breaking lines in the middle of (info ...) >> links prevents following them using "C-x C-e". >> > Actually, I never used these sort of links myself, thanks for pointing > out how this is done! :) I moved all infolinks to footnotes to avoid the > line breaks. > Just a clarification: you cannot break the *string* argument but newlines in other places are fine: (info "(org) The Spreadsheet") works fine, but (info "(org) The Spreadsheet") does not: the second string is not the same as the first one, since it includes a newline. OTOH, you can escape the newline: (info "(org) The \ Spreadsheet") works fine. The point is that all of this follows from the properties of strings. Just go to the *scratch* buffer and evaluate some expressions: (string-equal "a b" "a \ b") t (string-equal "a b" "a b") nil -- Nick