Skip to content

Commit 2cc5f35

Browse files
authored
Merge pull request #341 from equwal/delete-trailing-whitespace
Delete obviously erroneous (and often annoying) trailing whitespace.
2 parents 9bd7d83 + 287945a commit 2cc5f35

File tree

23 files changed

+24
-24
lines changed

23 files changed

+24
-24
lines changed

snippets/bibtex-mode/inproceedings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
publisher = {${publisher}}}${,
1818
note = {${note}}}
1919
}
20-
20+
2121
$0

snippets/c++-mode/using

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- mode: snippet -*-
2-
# name: using namespace ...
2+
# name: using namespace ...
33
# key: using
44
# --
55
using namespace ${std};

snippets/chef-mode/user

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ user "${1:random}" do
1010
home "${5:/home/random}"
1111
shell "${6:/bin/zsh}"
1212
password "${7:\$1\$JJsvHslV\$szsCjVEroftprNn4JHtDi.}"
13-
supports :manage_home =>manage_home true
13+
supports :manage_home =>manage_home true
1414
end

snippets/csharp-mode/class

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ${5:public} class ${1:Name}
1515

1616
/// <summary>
1717
/// ${4:Default Destructor}
18-
/// </summary>
18+
/// </summary>
1919
public ~$1()
2020
{
2121
}

snippets/d-mode/enum

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- mode: snippet -*-
2-
# name: enum … { … }
2+
# name: enum … { … }
33
# key: enum
44
# --
55
enum ${1:name}

snippets/d-mode/tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- mode: snippet -*-
2-
# name: try … finally …
2+
# name: try … finally …
33
# key: tryf
44
# --
55
try

snippets/emacs-lisp-mode/dired.process_marked

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# contributor : Xah Lee
44
# --
55
;; idiom for processing a list of files in dired's marked files
6-
6+
77
;; suppose myProcessFile is your function that takes a file path
88
;; and do some processing on the file
99

snippets/emacs-lisp-mode/find-replace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"Replace “<” to “&lt;” and other chars in HTML.
77
This works on the current region."
88
(interactive "r")
9-
(save-restriction
9+
(save-restriction
1010
(narrow-to-region start end)
1111
(goto-char (point-min))
1212
(while (search-forward "&" nil t) (replace-match "&amp;" nil t))

snippets/emacs-lisp-mode/x-dired.process_marked

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# key: x-dired
55
# --
66
;; idiom for processing a list of files in dired's marked files
7-
7+
88
;; suppose myProcessFile is your function that takes a file path
99
;; and do some processing on the file
1010

snippets/emacs-lisp-mode/x-find-replace

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"Replace “<” to “&lt;” and other chars in HTML.
88
This works on the current region."
99
(interactive "r")
10-
(save-restriction
10+
(save-restriction
1111
(narrow-to-region start end)
1212
(goto-char (point-min))
1313
(while (search-forward "&" nil t) (replace-match "&amp;" nil t))

0 commit comments

Comments
 (0)