summaryrefslogtreecommitdiff
path: root/src/generators
diff options
context:
space:
mode:
authorGrégoire Duchêne <gduchene@fastmail.net>2011-09-08 16:48:21 +0200
committerGrégoire Duchêne <gduchene@fastmail.net>2011-09-17 12:57:56 +0200
commit3205c382b9f896266fa8df90fe63c35228da91ba (patch)
tree2756ba3ed9f5cb3c30fe363823f3a6794106b423 /src/generators
parentf3cb1c742236923a7450f77ca1fd7607ec6703fe (diff)
Whitespace cleanup.
Diffstat (limited to 'src/generators')
-rw-r--r--src/generators/latex/text_g.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/generators/latex/text_g.cpp b/src/generators/latex/text_g.cpp
index cdebe9f..b9d013a 100644
--- a/src/generators/latex/text_g.cpp
+++ b/src/generators/latex/text_g.cpp
@@ -20,7 +20,7 @@ latex::text_g::text_g() : text_g::base_type(text_) {
using ka::standard_wide::char_;
text_ = stext_ | pstext_ | atom_ | ptext_;
-
+
stext_ = &uint_(EMPH) << L"\\emph{" << +text_ << '}'
| &uint_(SEMPH) << L"\\textit{\\emph{" << +text_ << L"}}"
| &uint_(VSEMPH) << L"\\texttt{\\textit{\\emph{" << +text_ << L"}}}"
@@ -34,7 +34,7 @@ latex::text_g::text_g() : text_g::base_type(text_) {
atom_ = &uint_(NBSP) << '~' | &uint_(NEWLINE) << L"\\\\" << eol;
- pstext_ = &uint_(LINK) << L"\\href{" << ptext_[_1 = ph::at_c<2>(_val)]
+ pstext_ = &uint_(LINK) << L"\\href{" << ptext_[_1 = ph::at_c<2>(_val)]
<< L"}{" << (+text_)[_1 = ph::at_c<1>(_val)] << '}';
ptext_ = +char_;