summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2008-08-19 08:55:51 +0200
committerJim Meyering <meyering@redhat.com>2008-08-19 08:56:29 +0200
commitf3574102d3fb8ce2057854bae6fb4dda786df9aa (patch)
tree84fe128ecf1c551cdd739467c80a085d4bfb37af
parentedd292f8d4a5845bcc0d01ab080a6fc9f51a36fa (diff)
downloadcoreutils-f3574102d3fb8ce2057854bae6fb4dda786df9aa.tar.xz
.gitattributes: generalize
* .gitattributes: Relax the glob pattern, so it matches *.texinfo, too. Suggest a POSIX BRE, rather than one that uses the GNU extension, \\+.
-rw-r--r--.gitattributes4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitattributes b/.gitattributes
index 609326900..32f18fd47 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,7 +1,7 @@
-*.texi diff=texinfo
+*.texi* diff=texinfo
# Put something like the following e.g., in your ~/.gitconfig file
# # Include proper "function name" string in diffs of texinfo.
# # Derived from the regexp in emacs' lisp/add-log.el.
# [diff "texinfo"]
-# funcname = "^@node[ \t]\\+\\([^,]\\+\\)"
+# funcname = "^@node[ \t][ \t]*\\([^,][^,]*\\)"