branch: elpa/git-commit commit ac7fae6a9893b55ad01942d9ea5a571d44426665 Author: Kyle Meyer <k...@kyleam.com> Commit: Kyle Meyer <k...@kyleam.com>
Set coding system for remaining libraries that need it The set of files that contain non-ASCII characters has grown since 1c6205d8 (Only set coding system for libraries that need it, 2016-12-27). Set the coding system for all files listed by git grep -lP '[^\x00-\x7f]' '*.el' Closes #4732. --- lisp/git-commit.el | 2 +- lisp/magit-log.el | 2 +- lisp/magit-section.el | 2 +- test/magit-tests.el | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/git-commit.el b/lisp/git-commit.el index ba401daaf3..3de5a497e1 100644 --- a/lisp/git-commit.el +++ b/lisp/git-commit.el @@ -1,4 +1,4 @@ -;;; git-commit.el --- Edit Git commit messages -*- lexical-binding:t -*- +;;; git-commit.el --- Edit Git commit messages -*- lexical-binding:t; coding:utf-8 -*- ;; Copyright (C) 2008-2022 The Magit Project Contributors diff --git a/lisp/magit-log.el b/lisp/magit-log.el index 25ccc615d9..eea160225e 100644 --- a/lisp/magit-log.el +++ b/lisp/magit-log.el @@ -1,4 +1,4 @@ -;;; magit-log.el --- Inspect Git history -*- lexical-binding:t -*- +;;; magit-log.el --- Inspect Git history -*- lexical-binding:t; coding:utf-8 -*- ;; Copyright (C) 2008-2022 The Magit Project Contributors diff --git a/lisp/magit-section.el b/lisp/magit-section.el index d35d9a9663..0d3e062b01 100644 --- a/lisp/magit-section.el +++ b/lisp/magit-section.el @@ -1,4 +1,4 @@ -;;; magit-section.el --- Sections for read-only buffers -*- lexical-binding:t -*- +;;; magit-section.el --- Sections for read-only buffers -*- lexical-binding:t; coding:utf-8 -*- ;; Copyright (C) 2008-2022 The Magit Project Contributors diff --git a/test/magit-tests.el b/test/magit-tests.el index 05f6d52d7d..316de0cd04 100644 --- a/test/magit-tests.el +++ b/test/magit-tests.el @@ -1,4 +1,4 @@ -;;; magit-tests.el --- Tests for Magit -*- lexical-binding:t -*- +;;; magit-tests.el --- Tests for Magit -*- lexical-binding:t; coding:utf-8 -*- ;; Copyright (C) 2008-2022 The Magit Project Contributors