public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Akira TAGOH <tagoh@redhat.com>
To: git-commits@fedoraproject.org
Subject: [rpms/anthy] rawhide: Fix lexical-binding warning
Date: Fri, 04 Sep 2026 02:44:44 GMT [thread overview]
Message-ID: <178848988460.1.8261996138465212073.rpms-anthy-8a3265f13cd3@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/anthy
Branch : rawhide
Commit : 8a3265f13cd36214444f768fa09f952f9161c41f
Author : Akira TAGOH <tagoh@redhat.com>
Date : 2026-09-04T11:44:19+09:00
Stats : +12/-3 in 1 file(s)
URL : https://src.fedoraproject.org/rpms/anthy/c/8a3265f13cd36214444f768fa09f952f9161c41f?branch=rawhide
Log:
Fix lexical-binding warning
- Resolves: rhbz#2528349
---
diff --git a/anthy-init.el b/anthy-init.el
index 3354cc2..627458e 100644
--- a/anthy-init.el
+++ b/anthy-init.el
@@ -1,10 +1,19 @@
-;; anthy-init.el
+;;; anthy-init.el --- Autoload anthy -*- lexical-binding: t; -*-
+
+;;; Commentary:
;;
+;; This file sets up the load-path for the Anthy Emacs Lisp files and
+;; registers "japanese-anthy" as a LEIM input method, so that Anthy Kana
+;; Kanji conversion becomes available via `set-input-method'. It is loaded
+;; automatically at startup on both GNU Emacs and XEmacs.
+
+;;; Code:
(if (featurep 'xemacs)
(setq load-path (cons "/usr/share/xemacs/xemacs-packages/lisp/anthy" load-path))
(setq load-path (cons "/usr/share/emacs/site-lisp/anthy" load-path)))
(autoload 'anthy-leim-activate "anthy" nil t)
(register-input-method "japanese-anthy" "Japanese"
- 'anthy-leim-activate "[anthy]"
- "Anthy Kana Kanji conversion system")
+ 'anthy-leim-activate "[anthy]"
+ "Anthy Kana Kanji conversion system")
+;;; anthy-init.el ends here
reply other threads:[~2026-09-04 2:44 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178848988460.1.8261996138465212073.rpms-anthy-8a3265f13cd3@fedoraproject.org \
--to=tagoh@redhat.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox