-*- mode: lisp-data -*- text-mode :when (and (fboundp 'git-commit-mode) (git-commit-mode)) (add\ "gnu: Add " (p (with-temp-buffer (magit-git-wash #'magit-diff-wash-diffs "diff" "--staged") (goto-char (point-min)) (when (re-search-forward "\\+(define-public \\(\\S-+\\)" nil 'noerror) (match-string-no-properties 1))) var ) "." n n "* " (car (magit-staged-files)) " (" (s var ) "): New variable.") (remove\ "gnu: Remove " (p (with-temp-buffer (magit-git-wash #'magit-diff-wash-diffs "diff" "--staged") (goto-char (point-min)) (when (re-search-forward "\\-(define-public \\(\\S-+\\)" nil 'noerror) (match-string-no-properties 1))) var) "." n n "* " (car (magit-staged-files)) " (" (s var) "): Delete variable.") (rename\ "gnu: " (p (with-temp-buffer (magit-git-wash #'magit-diff-wash-diffs "diff" "--staged") (beginning-of-buffer) (when (search-forward "-(define-public " nil 'noerror) (thing-at-point 'sexp 'no-properties)))
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/package-management.scm
"^sbcl-" "" (thing-at-point 'sexp 'no-properties))))) var) "." n n "* " (car (magit-staged-files)) " (cl-" (s var) ", ecl-" (s var) ", sbcl-" (s var) "): New variables.") (https\ "gnu: " (p (with-temp-buffer (magit-git-wash #'magit-diff-wash-diffs "diff" "--staged") (goto-char (point-min)) (when (re-search-forward "^[ ]*(define-public \\(\\S-+\\)" nil 'noerror) (match-string-no-properties 1))) var) ": Use HTTPS home page." n n "* " (car (magit-staged-files)) " (" (s var) ")[home-page]: Use HTTPS." n (mapconcat (lambda (file) (concat "* " file)) (cdr (magit-staged-files))) n)
AgeCommit message (Expand)Author