[LyX/master] Do not write \default_view_format if it is empty.

Richard Kimberly Heck rikiheck at lyx.org
Mon Feb 15 15:53:12 UTC 2021


commit 93e7ab1f3e0535f15da73b0dc2fe71ee4e1b0281
Author: Richard Kimberly Heck <rikiheck at lyx.org>
Date:   Mon Feb 15 10:55:20 2021 -0500

    Do not write \default_view_format if it is empty.
---
 src/LyXRC.cpp |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/LyXRC.cpp b/src/LyXRC.cpp
index 8416cd3..afa3000 100644
--- a/src/LyXRC.cpp
+++ b/src/LyXRC.cpp
@@ -2729,8 +2729,9 @@ void LyXRC::write(ostream & os, bool ignore_system_lyxrc, string const & name) c
 			break;
 		// fall through
 	case RC_DEFAULT_VIEW_FORMAT:
-		if (ignore_system_lyxrc ||
-		    default_view_format != system_lyxrc.default_view_format) {
+		if ((ignore_system_lyxrc ||
+			default_view_format != system_lyxrc.default_view_format)
+			&& !default_view_format.empty()) {
 			os << "\\default_view_format " << default_view_format << '\n';
 		}
 		if (tag != RC_LAST)


More information about the lyx-cvs mailing list