diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2012-04-07 08:15:22 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2012-04-07 08:15:22 -0700 |
commit | b5385551e363e616cc8bbe067d7a8b3587ac175e (patch) | |
tree | a570dd3aea70404612734962877de3c1866eb676 /src/xml.c | |
parent | b142f1584c4c8c8b16740e3477dee39ab88cebba (diff) | |
download | emacs-b5385551e363e616cc8bbe067d7a8b3587ac175e.tar.gz |
Fix typo that broke non-Windows builds.
* xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
Diffstat (limited to 'src/xml.c')
-rw-r--r-- | src/xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xml.c b/src/xml.c index 7be8613f74a..d8dc0677252 100644 --- a/src/xml.c +++ b/src/xml.c @@ -73,7 +73,7 @@ libxml2_loaded_p (void) #define fn_xmlCleanupParser xmlCleanupParser #define fn_xmlCheckVersion xmlCheckVersion -static inine int +static inline int libxml2_loaded_p (void) { return 1; |