From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eshel Yaron Newsgroups: gmane.emacs.devel Subject: Menu entries - sentence or title case? Date: Tue, 20 Dec 2022 22:13:46 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="35486"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Tue Dec 20 21:14:32 2022 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1p7j0Q-0008yH-Dt for ged-emacs-devel@m.gmane-mx.org; Tue, 20 Dec 2022 21:14:30 +0100 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1p7izr-0006T9-WE; Tue, 20 Dec 2022 15:13:56 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p7izo-0006Sg-Oi for emacs-devel@gnu.org; Tue, 20 Dec 2022 15:13:53 -0500 Original-Received: from mail.eshelyaron.com ([107.175.124.16] helo=eshelyaron.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1p7izn-0002zI-Di for emacs-devel@gnu.org; Tue, 20 Dec 2022 15:13:52 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=eshelyaron.com; s=mail; t=1671567230; bh=XdhL2hkr3n9K52u/lLmkt0tGfLMlLEk9Dr+HRrfawoo=; h=From:To:Subject:Date:From; b=uYJeQm3VIIIvAW8tHweVUxp3GKgD+N9lkjvwJxYFiQI1iJb4MLCmw23vm0rhbj5Sv ZcS2oQChasLzh6gG++uaAXSdGwHFPFrL25P0tCH1S63D4A6EP6yECCR5FjbV1jBAYC iIy0lD1oSPE5xvCO7IWuqqIojbFcsJlLWP1CeCLUTttXo0E7Qjyvt1h58Z9qWfyu4I TekIKQzrZiHzS1iPoObrGGkt9iQ8m1CA2HQHfoP57m854JdEcKZ9NdCoybjsFzuDzH J+HyXdy4XG6ScuEn5qgqE0tk9/JAI/mZesSXvhFakauVcB9OWO+44k6T/4K2256XhZ NjKQHx9zUQpSA== Received-SPF: pass client-ip=107.175.124.16; envelope-from=me@eshelyaron.com; helo=eshelyaron.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:301703 Archived-At: Hey all, Most of the built-in menu entries in Emacs seem to use title case, e.g. "Instrument Function for Debugging" and "Evaluate Buffer" in emacs-lisp-mode-menu. On the other hand, some menus use sentence case. For example, in gnus-summary-thread-menu we have "Find all messages in thread" and in flymake-menu there's "Go to log buffer". Is there a preference/convention in Emacs of using one style or the other? Mostly I'm asking because I noticed that I have a mix of sentence case and title case entries in sweeprolog-menu in sweeprolog.el and looking to fix that I thought it would be nice to go for consistency with Emacs. Thanks, Eshel