From unknown Sun Jun 15 08:41:25 2025 X-Loop: help-debbugs@gnu.org Subject: bug#42700: 28.0.50; [PATCH] Add sass use rule Resent-From: Theodor Thornhill Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 03 Aug 2020 15:13:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 42700 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 42700@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.15964675457948 (code B ref -1); Mon, 03 Aug 2020 15:13:01 +0000 Received: (at submit) by debbugs.gnu.org; 3 Aug 2020 15:12:25 +0000 Received: from localhost ([127.0.0.1]:45874 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k2c8X-000248-2f for submit@debbugs.gnu.org; Mon, 03 Aug 2020 11:12:25 -0400 Received: from lists.gnu.org ([209.51.188.17]:57090) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k2c8V-00023z-Gz for submit@debbugs.gnu.org; Mon, 03 Aug 2020 11:12:23 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:50426) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k2c8V-0000T2-Bw for bug-gnu-emacs@gnu.org; Mon, 03 Aug 2020 11:12:23 -0400 Received: from out0.migadu.com ([94.23.1.103]:15884) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1k2c8S-0002mg-2W for bug-gnu-emacs@gnu.org; Mon, 03 Aug 2020 11:12:23 -0400 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=thornhill.no; s=key1; t=1596467537; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=5xnMN7x5yBq+J73Nk308zjUqWqfu0N+UWHYe8FiHm7E=; b=nrT8KNOUCZXHyfc1dB1LrXFWunQrFSwWtR8+CChhf2SPiVWaVSLD1/H9jdIfHKlPNVjlmt hnhb6I/hRPujZh8e0/YOMYvwsrIHkIFGn/Q2B5LP2fEBb7pS7LTF44QuHhqJWLH1C1LIyx ZUyY/dTPKHlEh9JLKQCLkCJMkoUQveJr3xltE1wSIf0uA1sMite1RlpPlCSFNCnOEIkRcu Fr+K4ugw8eGDw4bUSTFuXo7jgOJc8GFw4KHplaclIM1PeDzRSONgTEq1ZAcOwb50NEpokS /Lgy3kui4u+Qh2bLqWquSGS+1s9dRbc9YlFGxs7yS5eSCG8Vx/SW302VewG2SA== From: Theodor Thornhill Date: Mon, 03 Aug 2020 17:12:18 +0200 Message-ID: <87bljrix0t.fsf@thornhill.no> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Spam-Score: -0.10 Received-SPF: pass client-ip=94.23.1.103; envelope-from=theo@thornhill.no; helo=out0.migadu.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/08/03 09:13:10 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] 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, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) --=-=-= Content-Type: text/plain A small patch adding the "@use" declaration to scss-mode. -- Theo --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-Add-sass-use-rule.patch >From 3d026a6b157c29cbe53c72be148c68b47ffe582c Mon Sep 17 00:00:00 2001 From: = <=> Date: Sat, 1 Aug 2020 08:42:25 +0200 Subject: [PATCH] Add sass @use rule * lisp/textmodes/css-mode.el (scss-at-ids): add 'use' to scss-at-ids for autocompletion. --- lisp/textmodes/css-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/textmodes/css-mode.el b/lisp/textmodes/css-mode.el index 2cd99787e8..cc5879880c 100644 --- a/lisp/textmodes/css-mode.el +++ b/lisp/textmodes/css-mode.el @@ -67,7 +67,7 @@ css-at-ids (defconst scss-at-ids '("at-root" "content" "debug" "each" "else" "else if" "error" "extend" - "for" "function" "if" "import" "include" "mixin" "return" "warn" + "for" "function" "if" "import" "include" "mixin" "return" "use" "warn" "while") "Additional identifiers that appear in the form @foo in SCSS.") -- 2.27.0 --=-=-=-- From unknown Sun Jun 15 08:41:25 2025 X-Loop: help-debbugs@gnu.org Subject: bug#42700: 28.0.50; [PATCH] Add sass use rule Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 04 Aug 2020 10:14:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42700 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Theodor Thornhill Cc: 42700@debbugs.gnu.org Received: via spool by 42700-submit@debbugs.gnu.org id=B42700.159653599428763 (code B ref 42700); Tue, 04 Aug 2020 10:14:01 +0000 Received: (at 42700) by debbugs.gnu.org; 4 Aug 2020 10:13:14 +0000 Received: from localhost ([127.0.0.1]:46903 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k2twY-0007Tr-CM for submit@debbugs.gnu.org; Tue, 04 Aug 2020 06:13:14 -0400 Received: from quimby.gnus.org ([95.216.78.240]:54714) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k2twX-0007Tc-8z for 42700@debbugs.gnu.org; Tue, 04 Aug 2020 06:13:13 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=sgbu95HUJz3XHt27X7uCETQiu9+i1fxZAI94QfKDiss=; b=oBmYoLNuZfrUVCVgxryh6hcLcl UiglBnBBKBth9nQWLDeDFeHYuXW65KvVpSxhNROIBqY2XmPqh6boiUL1MjOZwPExmNthYTugV4fk1 wSFdxwxSKNtnMUgm5rBiRrVjOpn4gYmrKBFR8CH7aN1I4ICtaF8jx1PV7X07wQ3jKcH4=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k2twN-0006ZA-S7; Tue, 04 Aug 2020 12:13:06 +0200 From: Lars Ingebrigtsen References: <87bljrix0t.fsf@thornhill.no> Date: Tue, 04 Aug 2020 12:13:02 +0200 In-Reply-To: <87bljrix0t.fsf@thornhill.no> (Theodor Thornhill's message of "Mon, 03 Aug 2020 17:12:18 +0200") Message-ID: <87v9hypvm9.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Theodor Thornhill writes: > A small patch adding the "@use" declaration to scss-mode. Thanks; added to Emacs 28.1. Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Theodor Thornhill writes: > A small patch adding the "@use" declaration to scss-mode. Thanks; added to Emacs 28.1. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Aug 04 06:13:22 2020 Received: (at control) by debbugs.gnu.org; 4 Aug 2020 10:13:22 +0000 Received: from localhost ([127.0.0.1]:46906 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k2twg-0007UC-JS for submit@debbugs.gnu.org; Tue, 04 Aug 2020 06:13:22 -0400 Received: from quimby.gnus.org ([95.216.78.240]:54728) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k2twe-0007U0-Nj for control@debbugs.gnu.org; Tue, 04 Aug 2020 06:13:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=D2wbgaU9r5wK8KYU6JFreivXjN9cfQCHWiSdiVmDwEI=; b=fYtxxF+77Cbozp3Ig66ui2dbiC curwqBDPtVLb6qaMlxdaII3JDVxdDtvo9g+Espe/AD8DOAp7se6PhPUKGxzqEYqKtkW+aKep/2UZL WCzgb6QsH0BzWBfhl18jAl4t1Qm7ekDpj6UEAje1VewjGPMHBlBzXiAWrit3TIRVZxAk=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k2twX-0006ZL-0F for control@debbugs.gnu.org; Tue, 04 Aug 2020 12:13:15 +0200 Date: Tue, 04 Aug 2020 12:13:11 +0200 Message-Id: <87tuxipvm0.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #42700 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 42700 fixed close 42700 28.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 42700 fixed close 42700 28.1 quit