Add missing '*' to Emacs local variables indentation hinting

A local variables section must start with /** otherwise Emacs will
prompt the user every time if the settings should be applied.

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
This commit is contained in:
Joachim Nilsson 2018-08-03 01:32:33 +02:00
parent d7bfb2c66f
commit a08b8ee38a
4 changed files with 7 additions and 6 deletions

View File

@ -1185,7 +1185,8 @@ int main(argc, argv)
}
}
}
/*
/**
* Local variables:
* c-indent-level: 8
* c-basic-offset: 8

View File

@ -939,7 +939,7 @@ extern void Syslog(int priority, char *fmt, ...)
}
#endif
/*
/**
* Local variables:
* c-indent-level: 8
* c-basic-offset: 8

View File

@ -611,8 +611,9 @@ extern void Syslog(int priority, char *fmt, ...)
return;
}
#endif
/*
#endif /* TEST */
/**
* Local variables:
* c-indent-level: 8
* c-basic-offset: 8

View File

@ -3113,11 +3113,10 @@ void sighup_handler()
return;
}
/*
/**
* Local variables:
* c-indent-level: 8
* c-basic-offset: 8
* tab-width: 8
* End:
*/