diff options
author | Jean-Charles Malahieude <lilyfan@orange.fr> | 2016-04-17 10:31:47 +0200 |
---|---|---|
committer | Jean-Charles Malahieude <lilyfan@orange.fr> | 2016-04-17 10:31:47 +0200 |
commit | 668cabf0de2ae9e2e525251fd9ad69a24008dbc3 (patch) | |
tree | 8459501e20914dac7b5d343999c580e4783f95d6 /Documentation/fr | |
parent | a37e499ecfe54b0db6c7b85ade9ba42591d12e1e (diff) |
Doc-fr: sync with master
- EM Scheme tutorial
- web Introduction
Diffstat (limited to 'Documentation/fr')
-rw-r--r-- | Documentation/fr/extending/scheme-tutorial.itely | 21 | ||||
-rw-r--r-- | Documentation/fr/web/introduction.itexi | 5 |
2 files changed, 18 insertions, 8 deletions
diff --git a/Documentation/fr/extending/scheme-tutorial.itely b/Documentation/fr/extending/scheme-tutorial.itely index d95e486dab..4664a82cc2 100644 --- a/Documentation/fr/extending/scheme-tutorial.itely +++ b/Documentation/fr/extending/scheme-tutorial.itely @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*- @ignore - Translation of GIT committish: 9d1f4d4d16abf95cccf6bea9cf98c312e55a3ebf + Translation of GIT committish: 934175b31d43c95e341b098f12c2e833522a5d45 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -317,12 +317,21 @@ guile> (list 1 2 3 "abc" 17.5) (1 2 3 "abc" 17.5) @end lisp -Comme vous le remarquez, une liste s'affiche sous la forme d'une suite -d'éléments séparés par une espace, bornée par des parenthèses. -Contrairement à une paire, il n'y a pas de point entre les éléments. +La représentation d'une liste par la succession de ses éléments, séparés +par des espaces, bornée par des parenthèses, n'est en fait qu'une vue +compacte des paires qui la constituent. Les paires sont ainsi +dépourvues du point de séparation et de la parenthèse ouvrante qui le +suit et des parenthèses fermantes. Sans ce « compactage », cette liste +serait ainsi présentée : -Vous pouvez aussi saisir directement une liste en entourant ses éléments -par des parenthèses à la suite d'une apostrophe : +@lisp +(1 . (2 . (3 . ("abc" . (17.5 . ()))))) +@end lisp + +Vous pouvez donc saisir une liste comme elle serrait présentée, en +entourant ses éléments par des parenthèses à la suite d'une apostrophe +(afin que ce qui suit ne soit pas interprété comme un appel à une +fonction) : @lisp guile> '(17 23 "foo" "bar" "bazzle") diff --git a/Documentation/fr/web/introduction.itexi b/Documentation/fr/web/introduction.itexi index 072398c3c7..8ebffbf836 100644 --- a/Documentation/fr/web/introduction.itexi +++ b/Documentation/fr/web/introduction.itexi @@ -1,7 +1,7 @@ @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*- @c This file is part of web.texi @ignore - Translation of GIT committish: 88a5dbc589b0d0434f8e640467b5ab57d14dc461 + Translation of GIT committish: 934175b31d43c95e341b098f12c2e833522a5d45 When revising a translation, copy the HEAD committish of the version that you are working on. For details, see the Contributors' @@ -1564,7 +1564,8 @@ créé en tant que greffon de l'éditeur @uref{http://www.jedit.org,jEdit}. exporte dans une certaine mesure au format LilyPond. @item -@uref{https://sourceforge.net/projects/noteedit.berlios/,NoteEdit}, qui importait +@uref{https://sourceforge.net/projects/noteedit.berlios/,NoteEdit}, +qui importait @uref{http://www.makemusic.com/musicxml, MusicXML}, s'est scindé en @uref{http://vsr.informatik.tu-chemnitz.de/staff/jan/nted/nted.xhtml,NtEd} et @uref{http://canorus.org,Canorus}. |