GNU bug report logs -
#25217
[PATCH] Enable sh-mode zshrc
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 25217 in the body.
You can then email your comments to 25217 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Sat, 17 Dec 2016 17:04:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Michihito Shigemura <m_shigemura <at> shigemk2.com>
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Sat, 17 Dec 2016 17:04:03 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
* lisp/progmodes/sh-script.el (sh-mode):
Add zsh string-match
---
lisp/progmodes/sh-script.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 5d362e4..ac5fb19 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -1683,6 +1683,7 @@ sh-mode
((string-match "[.]bash\\>" buffer-file-name) "bash")
((string-match "[.]ksh\\>" buffer-file-name) "ksh")
((string-match "[.]t?csh\\(rc\\)?\\>" buffer-file-name) "csh")
+ ((string-match "[.]zsh\\(rc\\)?\\>" buffer-file-name) "zsh")
((equal (file-name-nondirectory buffer-file-name) ".profile") "sh")
(t sh-shell-file))
nil nil)
--
2.9.3
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Mon, 19 Dec 2016 09:32:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 25217 <at> debbugs.gnu.org (full text, mbox):
Michihito Shigemura <m_shigemura <at> shigemk2.com> writes:
> * lisp/progmodes/sh-script.el (sh-mode):
> Add zsh string-match
> ---
> lisp/progmodes/sh-script.el | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
> index 5d362e4..ac5fb19 100644
> --- a/lisp/progmodes/sh-script.el
> +++ b/lisp/progmodes/sh-script.el
> @@ -1683,6 +1683,7 @@ sh-mode
> ((string-match "[.]bash\\>" buffer-file-name) "bash")
> ((string-match "[.]ksh\\>" buffer-file-name) "ksh")
> ((string-match "[.]t?csh\\(rc\\)?\\>" buffer-file-name) "csh")
> + ((string-match "[.]zsh\\(rc\\)?\\>" buffer-file-name) "zsh")
> ((equal (file-name-nondirectory buffer-file-name) ".profile") "sh")
> (t sh-shell-file))
> nil nil)
Hi, looks good.
Is it worth adding support for .zshenv as well?
--
Alan Third
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Mon, 19 Dec 2016 13:17:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 25217 <at> debbugs.gnu.org (full text, mbox):
Thank you for your replying.
I can add support for .zshenv. But how can I send the improved patch?
Do I send it to 25217 at debbugs.gnu.org?
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Mon, 19 Dec 2016 13:23:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 25217 <at> debbugs.gnu.org (full text, mbox):
On Mon, Dec 19, 2016 at 10:15:56PM +0900, Michihito Shigemura wrote:
> Thank you for your replying.
>
> I can add support for .zshenv. But how can I send the improved patch?
>
> Do I send it to 25217 at debbugs.gnu.org?
Yes, thanks.
--
Alan Third
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Tue, 20 Dec 2016 12:14:01 GMT)
Full text and
rfc822 format available.
Message #17 received at 25217 <at> debbugs.gnu.org (full text, mbox):
* lisp/progmodes/sh-script.el (sh-mode):
Add zsh string-match
---
lisp/progmodes/sh-script.el | 1 +
1 file changed, 1 insertion(+)
diff --git a/lisp/progmodes/sh-script.el b/lisp/progmodes/sh-script.el
index 5d362e4..a2c869d 100644
--- a/lisp/progmodes/sh-script.el
+++ b/lisp/progmodes/sh-script.el
@@ -1683,6 +1683,7 @@ sh-mode
((string-match "[.]bash\\>" buffer-file-name) "bash")
((string-match "[.]ksh\\>" buffer-file-name) "ksh")
((string-match "[.]t?csh\\(rc\\)?\\>" buffer-file-name) "csh")
+ ((string-match "[.]zsh\\(rc\\|env\\)?\\>" buffer-file-name) "zsh")
((equal (file-name-nondirectory buffer-file-name) ".profile") "sh")
(t sh-shell-file))
nil nil)
--
2.9.3
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Fri, 23 Dec 2016 04:08:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 25217 <at> debbugs.gnu.org (full text, mbox):
I sent new patch!
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Sat, 24 Dec 2016 09:52:01 GMT)
Full text and
rfc822 format available.
Message #23 received at 25217 <at> debbugs.gnu.org (full text, mbox):
On Fri, Dec 23, 2016 at 01:07:04PM +0900, Michihito Shigemura wrote:
> I sent new patch!
Sorry for the slow response. It looks good to me. Have you contributed
to Emacs before?
--
Alan Third
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Sat, 24 Dec 2016 14:12:01 GMT)
Full text and
rfc822 format available.
Message #26 received at 25217 <at> debbugs.gnu.org (full text, mbox):
Sorry, but I haven't contributed to Emacs before.
Reply sent
to
Alan Third <alan <at> idiocy.org>
:
You have taken responsibility.
(Sun, 25 Dec 2016 19:57:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
Michihito Shigemura <m_shigemura <at> shigemk2.com>
:
bug acknowledged by developer.
(Sun, 25 Dec 2016 19:57:02 GMT)
Full text and
rfc822 format available.
Message #31 received at 25217-done <at> debbugs.gnu.org (full text, mbox):
On Sat, Dec 24, 2016 at 11:11:10PM +0900, Michihito Shigemura wrote:
> Sorry, but I haven't contributed to Emacs before.
That’s good. If you had contributed before we might have had to get
you to assign copyright, but since it’s a small change we can let it
go. If you do decide to contribute again in the future you may have to
go through the process of assigning copyright.
I’ve pushed this change to the master branch.
Thank you!
--
Alan Third
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#25217
; Package
emacs
.
(Tue, 27 Dec 2016 15:02:01 GMT)
Full text and
rfc822 format available.
Message #34 received at 25217 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
> That’s good. If you had contributed before we might have had to get
you to assign copyright, but since it’s a small change we can let it
go. If you do decide to contribute again in the future you may have to
go through the process of assigning copyright.
Thank you for your pushing my change. I'll be careful.
[Message part 2 (text/html, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 25 Jan 2017 12:24:03 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 years and 201 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.