nano-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Nano-devel] quick: fix for get_full_path() prototype


From: David Lawrence Ramsey
Subject: [Nano-devel] quick: fix for get_full_path() prototype
Date: Tue, 26 Feb 2002 18:55:33 -0800 (PST)

Due to a minor oversight on my part, when removing the
duplicate chacking code from get_full_path(), I fixed the
#if defined's around get_full_path() to no longer depend on
ENABLE_MULTIBUFFER's being defined, but I forgot to do the
same for the get_full_path() prototype.  The attached patch
fixes that.


_____________________________________________________________
Sluggy.Net: The Sluggy Freelance Community!

_____________________________________________________________
You deserve a better email address! Get personalized email @yourname
or @yourcompany from Everyone.net --> http://www.everyone.net?tag
--- proto.h.old Thu Feb 21 00:00:00 2002
+++ proto.h     Tue Feb 26 17:46:19 2002
@@ -220,7 +220,7 @@
 char *charalloc (size_t howmuch);
 char *get_next_filename(char *name);
 
-#if defined (ENABLE_MULTIBUFFER) || !defined (DISABLE_SPELLER) || !defined 
(DISABLE_OPERATINGDIR)
+#if !defined (DISABLE_SPELLER) || !defined (DISABLE_OPERATINGDIR)
 char *get_full_path(const char *origpath);
 #endif
 

reply via email to

[Prev in Thread] Current Thread [Next in Thread]