diff options
| author | Eric Blake <ebb9@byu.net> | 2008-08-19 08:55:51 +0200 |
|---|---|---|
| committer | Jim Meyering <meyering@redhat.com> | 2008-08-19 08:56:29 +0200 |
| commit | f3574102d3fb8ce2057854bae6fb4dda786df9aa (patch) | |
| tree | 84fe128ecf1c551cdd739467c80a085d4bfb37af | |
| parent | sort: improve usage wording (diff) | |
| download | coreutils-f3574102d3fb8ce2057854bae6fb4dda786df9aa.tar.gz coreutils-f3574102d3fb8ce2057854bae6fb4dda786df9aa.zip | |
.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-- | .gitattributes | 4 |
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]*\\([^,][^,]*\\)" |
