Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git-branch: Mention -d and -D in man-page.
[gitweb.git]
/
config.c
diff --git
a/config.c
b/config.c
index 519fecfee4cd7344b538528f7fa923b7fda280d2..e89bab26c99f95e6bb7d3346343ab0c623843c42 100644
(file)
--- a/
config.c
+++ b/
config.c
@@
-13,6
+13,14
@@
static int get_next_char(void)
c = '\n';
if ((f = config_file) != NULL) {
c = fgetc(f);
+ if (c == '\r') {
+ /* DOS like systems */
+ c = fgetc(f);
+ if (c != '\n') {
+ ungetc(c, f);
+ c = '\r';
+ }
+ }
if (c == '\n')
config_linenr++;
if (c == EOF) {