commit 2104d41f71ff39f5c3f9f5a485707633b1bfb25b
Author: Richard Heck <[email protected]>
Date:   Sun Jul 10 01:43:19 2016 -0400

    Simplify logic a bit. (This was meant to be part of a previous
    commit.)
---
 src/Buffer.cpp |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/src/Buffer.cpp b/src/Buffer.cpp
index bcefe52..888fb93 100644
--- a/src/Buffer.cpp
+++ b/src/Buffer.cpp
@@ -4322,12 +4322,11 @@ Buffer::ExportStatus Buffer::preview(string const & 
format, bool includeall) con
 
        if (status != ExportSuccess)
                return status;
-       if (previewFile.exists()) {
-               if (!formats.view(*this, previewFile, format))
-                       return PreviewError;
-               else
-                       return PreviewSuccess;
-       } 
+
+       if (previewFile.exists())
+               return formats.view(*this, previewFile, format) ?
+                       PreviewSuccess : PreviewError;
+
        // Successful export but no output file?
        // Probably a bug in error detection.
        LATTEST(status != ExportSuccess);

Reply via email to