diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-01-03 03:31:54 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2009-01-03 03:31:54 +0000 |
commit | 4c282a278309d213d3e3971829daceef8752cbed (patch) | |
tree | 522830900ddcbae7de4da953cf31ce3879d3d9c0 /lisp/diff-mode.el | |
parent | 34f3247ffaa6ee68f6825c793de73e0bcb2c39bb (diff) | |
download | emacs-4c282a278309d213d3e3971829daceef8752cbed.tar.gz |
Remove spurious backspace.
Diffstat (limited to 'lisp/diff-mode.el')
-rw-r--r-- | lisp/diff-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index 4eb50899847..cbd1aaf48b2 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el @@ -1,7 +1,7 @@ ;;; diff-mode.el --- a mode for viewing/editing context diffs ;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, -;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. +;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. ;; Author: Stefan Monnier <monnier@iro.umontreal.ca> ;; Keywords: convenience patch diff @@ -1889,7 +1889,7 @@ I.e. like `add-change-log-entry-other-window' but applied to all hunks." "Show trailing whitespaces in modified lines for diff-mode." (interactive) (let ((whitespace-style '(trailing)) - (whitespace-trailing-regexp "^[-\+!<>].*?\\([\t ]+\\)$")) + (whitespace-trailing-regexp "^[-+!<>].*?\\([\t ]+\\)$")) (whitespace-mode 1))) ; display trailing whitespace in diff buffer ;; provide the package |