From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp0 ([2001:41d0:2:aacc::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms12 with LMTPS id MAbvOfYqdmGzRAAAsNZ9tg (envelope-from ); Mon, 25 Oct 2021 03:56:38 +0000 Received: from out2.migadu.com ([2001:41d0:2:aacc::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp0 with LMTPS id 6CzENfYqdmEhOgAA1q6Kng (envelope-from ); Mon, 25 Oct 2021 03:56:38 +0000 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kyleam.com; s=key1; t=1635134198; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=TNGx/Q2dyAYtNF9RBNVXpnSC0fytReyvLwJM0mj3alk=; b=OYNkjUvR1YiN47Bk8zROv73Bd1we65q1P7mgiYtFvOLsjEH7yyYfgYBnI2q8+jH8f79IVW 5waYsdVoZrtiotp0yVbYYIbY5OVoRoYz2sSH6GDvt4wjYnOthEvRV4lQ/8WbyziqxCT04P UnEPUGOeSAkQIE3oK4leDrdrcyzyIB7v9nyVuMo4LXvJaJoH01umMgcIOzBJ5qpkf2dK1z UXjUyvrRcltaQ+useAViC7NPe4+V7NNr/kcTMcekhCcVF9TUNjwM1W46T0aDce/b3x+ufp PcXmAjZfLUBLb3mwxIq1DdmVt/8EYuOrqGW13vTSEbEgK6sqmOVzdkmVeL2Cqg== From: Kyle Meyer To: piem@inbox.kyleam.com Subject: [PATCH 01/10] piem-lei-query-show: Fix capitalization in error message Date: Sun, 24 Oct 2021 23:56:21 -0400 Message-Id: <20211025035630.297598-2-kyle@kyleam.com> In-Reply-To: <20211025035630.297598-1-kyle@kyleam.com> References: <20211025035630.297598-1-kyle@kyleam.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: kyle@kyleam.com X-TUID: JBx0HCwlK2Fn --- piem-lei.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piem-lei.el b/piem-lei.el index 6bd977d8..611b3243 100644 --- a/piem-lei.el +++ b/piem-lei.el @@ -251,7 +251,7 @@ (defun piem-lei-query-show () (display-buffer (piem-lei-show (or (piem-lei-query-get-mid) - (user-error "No Message ID associated with current line"))) + (user-error "No message ID associated with current line"))) '(display-buffer-below-selected (inhibit-same-window . t) (window-height . 0.8)))) -- 2.33.1