Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(699)

Delta Between Two Patch Sets: scm/text.scm

Issue 4553056: New alist to replace special characters. (Closed)
Left Patch Set: Applying Trevor and Graham changes. Created 13 years, 5 months ago
Right Patch Set: Partially reverting one of Neil's changes. Created 13 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « scm/lily.scm ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 ;;;; This file is part of LilyPond, the GNU music typesetter.
2 ;;;;
3 ;;;; Copyright (C) 2011 Bertrand Bordage <bordage.bertrand@gmail.com>
4 ;;;;
5 ;;;; LilyPond is free software: you can redistribute it and/or modify
6 ;;;; it under the terms of the GNU General Public License as published by
7 ;;;; the Free Software Foundation, either version 3 of the License, or
8 ;;;; (at your option) any later version.
9 ;;;;
10 ;;;; LilyPond is distributed in the hope that it will be useful,
11 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 ;;;; GNU General Public License for more details.
14 ;;;;
15 ;;;; You should have received a copy of the GNU General Public License
16 ;;;; along with LilyPond. If not, see <http://www.gnu.org/licenses/>.
17
18
19 (define-public default-string-replacement-alist
20 '(;; Whitespaces
21 ("\t" . " ")
22 ("\n" . " ")
23 ("\v" . " ")))
24
25 (define-public (internal-add-text-replacements props alist)
26 (let* ((dummy-replacements (chain-assoc-get 'replacement-alist props '()))
27 (new-replacements
28 (append dummy-replacements alist)))
29 (prepend-alist-chain 'replacement-alist new-replacements props)))
LEFTRIGHT
« scm/lily.scm ('k') | no next file » | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b