]> git.eshelyaron.com Git - emacs.git/commitdiff
; * src/sysdep.c: Fix mistake in previous commit
authorMattias Engdegård <mattiase@acm.org>
Sat, 16 Apr 2022 10:16:45 +0000 (12:16 +0200)
committerMattias Engdegård <mattiase@acm.org>
Sat, 16 Apr 2022 10:16:45 +0000 (12:16 +0200)
src/sysdep.c

index f6d7d3920bda7bad0707234fed508e6e5f5956a6..72be25f661041f575e4a45fa33b933aeac500089 100644 (file)
@@ -4027,8 +4027,8 @@ system_process_attributes (Lisp_Object pid)
 
 #elif defined DARWIN_OS
 
-#define HAVE_RUSAGE_INFO_CURRENT (MAC_OS_X_VERSION_MIN_REQUIRED >= 101000)
-#define HAVE_PROC_PIDINFO (MAC_OS_X_VERSION_MIN_REQUIRED >= 1050)
+#define HAVE_RUSAGE_INFO_CURRENT (__MAC_OS_X_VERSION_MIN_REQUIRED >= 101000)
+#define HAVE_PROC_PIDINFO (__MAC_OS_X_VERSION_MIN_REQUIRED >= 1050)
 
 Lisp_Object
 system_process_attributes (Lisp_Object pid)