branch: master commit b23b5a3b34fe4ca47d57704a057c536a0a03ac74 Author: Daiki Ueno <u...@gnu.org> Commit: Daiki Ueno <u...@gnu.org>
snippet: Upcase the first letter of names --- gnome-c-snippet.el | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gnome-c-snippet.el b/gnome-c-snippet.el index 40c53f4..9fc8883 100644 --- a/gnome-c-snippet.el +++ b/gnome-c-snippet.el @@ -55,7 +55,7 @@ (require 'subword) (with-temp-buffer (let (words) - (insert name) + (insert (upcase-initials name)) (goto-char (point-min)) (while (not (eobp)) ;; Skip characters not recognized by subword-mode.