Commit 3d002ed6 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

cosmetic fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2039 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
...@@ -428,11 +428,11 @@ void execute_command(const char *command) ...@@ -428,11 +428,11 @@ void execute_command(const char *command)
* open and read the file. */ * open and read the file. */
void load_buffer(const char *name) void load_buffer(const char *name)
{ {
bool new_buffer = fileage == NULL bool new_buffer = (fileage == NULL
#ifdef ENABLE_MULTIBUFFER #ifdef ENABLE_MULTIBUFFER
|| ISSET(MULTIBUFFER) || ISSET(MULTIBUFFER)
#endif #endif
; );
/* new_buffer says whether we load to this buffer or a new one. /* new_buffer says whether we load to this buffer or a new one.
* If new_buffer is TRUE, we display "New File" if the file is * If new_buffer is TRUE, we display "New File" if the file is
* not found, and if it is found we set filename and add a new * not found, and if it is found we set filename and add a new
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment