all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Niels Søndergaard" <nisoni@algon.dk>
To: "Daniel Martín" <mardani29@yahoo.es>
Cc: "Alan Third" <alan@idiocy.org>,
	"Niels Søndergaard" <nisoni@algon.dk>,
	stefan@marxist.se, 51321@debbugs.gnu.org, larsi@gnus.org,
	"Filipp Gunbin" <fgunbin@fastmail.fm>
Subject: bug#51321: 29.0.50; date in modelines
Date: Tue, 2 Nov 2021 04:40:29 +0100	[thread overview]
Message-ID: <F704A9D3-D234-4928-B40A-19B431F4A1D8@algon.dk> (raw)
In-Reply-To: <m1lf27o710.fsf@yahoo.es>

[-- Attachment #1: Type: text/plain, Size: 3278 bytes --]

Hello 

I do nothing special, I do use the sourcecode of 29.0.50 from GitHub direct, build the emacs for nextstep, and launch it from the GUI of macOS.
By now it works perfectly.

This is my build script:
#!/bin/zsh
# Build emacs from daily github save

date > emacs-build.log 2>&1        # logfile
echo "build emacs 29.0.50" > emacs-build.log 2>&1        # logfile
cd emacs  >> ../emacs-build.log 2>&1        # logfile

#####
make clean >> ../emacs-build.log 2>&1        # logfile
if [ $? -eq 0 ]; then
  echo "               " $(date +%H:%M:%S) "make clean status exited successfully"
else
  echo "autogen.sh status exited with error code"
fi
#####
./autogen.sh >> ../emacs-build.log 2>&1
if [ $? -eq 0 ]; then
  echo "               " $(date +%H:%M:%S) "autogen.sh status exited successfully"
else
  echo "autogen.sh status exited with error code"
fi
####
git config pull.rebase false          # merge (the default strategy)
git pull >> ../emacs-build.log 2>&1

if [ $? -eq 0 ]; then
  echo "               " $(date +%H:%M:%S) "git status exited successfully"
else
    echo "git status exited with error code"
fi

####
./configure --with-native-compilation --with-xwidgets --with-mailutils  >> ../emacs-build.log 2>&1
###./configure --with-xwidgets  --with-mailutils >> ../emacs-build.log 2>&1
if [ $? -eq 0 ]; then
  echo  "               " $(date +%H:%M:%S) "configuration exited successfully"
  make >> ../emacs-build.log 2>&1
else
  echo "ERROR in configuration"
fi
#
if [ $? -eq 0 ]; then
  echo "               " $(date +%H:%M:%S) "make 'emacs' exited successfully"
  make install >> ../emacs-build.log 2>&1
else
  echo "ERROR in make "
fi
cd ..
echo "               " $(date +%H:%M:%S) "Now go to emacs/nextstep and move 'Emacs.app' to '/Applications/'"
date >> emacs-build.log 2>&1        # logfile
exit

mvh
Niels






 <applewebdata://229D5228-5FF5-4558-A35F-BAB0C5093AF6>
Niels Søndergaard
Mariehøj 236, 2990 Nivå
 <tel:+45 4052 2789>+45 4052 2789niels@algon.dk <mailto:niels@algon.dk>
Ultra posse nemo obligatur.

> Den 1. nov. 2021 kl. 23.17 skrev Daniel Martín <mardani29@yahoo.es>:
> 
> Alan Third <alan@idiocy.org> writes:
> 
>> 
>> I know almost nothing about the locale, but from reading the man pages
>> I can't understand why we need to set LC_ALL when we're already
>> setting LANG. Isn't LANG the fallback if LC_ALL isn't set?
> 
> You are right.  Setting LANG should be all that is needed and I think my
> patch should be reverted.
> 
> I'm still confused by Niels's issue, though.  Given the screenshot he
> showed, LANG should have been set to da_DK.UTF-8, which should show the
> weekday in Danish:
> 
> $ LANG=da_DK.UTF-8 date +%c
> Man  1 Nov 22:41:33 2021
> 
> Perhaps the way he launches Emacs inherits a LANG variable already set
> to English.  Or there is a wrapper in some custom Emacs NS distribution
> that sets LANG to English beforehand.  Anyway, I think it's a
> configuration problem somewhere, unrelated to Emacs, that should be
> handled by the user overriding the time locale manually:
> 
> (setq system-time-locale "da_DK.UTF-8")
> 
> WDYT?  Sorry, in retrospective, I think I didn't do the absolutely
> correct thing here.


[-- Attachment #2: Type: text/html, Size: 15105 bytes --]

  reply	other threads:[~2021-11-02  3:40 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-21 15:24 bug#51321: 29.0.50; date in modelines Niels Søndergaard
2021-10-21 17:00 ` Eli Zaretskii
2021-10-21 18:09   ` Niels Søndergaard
2021-10-21 18:13     ` Niels Søndergaard
2021-10-21 18:18     ` Eli Zaretskii
2021-10-22  1:37       ` Niels Søndergaard
2021-10-22  6:34         ` Eli Zaretskii
2021-10-22 13:27           ` Niels Søndergaard
2021-10-22 14:11             ` Eli Zaretskii
2021-10-23 12:16               ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-23 12:23                 ` Eli Zaretskii
2021-10-23 12:52                   ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-23 16:00                     ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-30 15:41                       ` Stefan Kangas
2021-10-30 18:09                         ` Alan Third
2021-10-31  9:06                           ` Eli Zaretskii
2021-10-31 10:14                             ` Alan Third
2021-10-31 13:01                               ` Eli Zaretskii
2021-11-01 13:04                               ` Filipp Gunbin
2021-11-01 13:33                                 ` Eli Zaretskii
2021-11-01 14:21                                   ` Filipp Gunbin
2021-11-01 14:34                                     ` Eli Zaretskii
2021-11-01 14:45                                       ` Filipp Gunbin
2021-11-01 21:17                                       ` Alan Third
2021-11-01 22:17                                         ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-11-02  3:40                                           ` Niels Søndergaard [this message]
2021-11-02 16:10                                           ` Filipp Gunbin
2021-11-02 18:22                                           ` Stefan Kangas
2021-11-09  7:52                                             ` Stefan Kangas
2021-11-09 14:13                                               ` Filipp Gunbin
2022-09-10  5:09                                                 ` Lars Ingebrigtsen
2021-11-02  1:10                                         ` Filipp Gunbin
2021-10-23 12:34                 ` Niels Søndergaard
2021-10-23 12:55                   ` Daniel Martín via Bug reports for GNU Emacs, the Swiss army knife of text editors
2021-10-23 12:58                     ` Niels Søndergaard
2021-10-22 14:40         ` Lars Ingebrigtsen

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=F704A9D3-D234-4928-B40A-19B431F4A1D8@algon.dk \
    --to=nisoni@algon.dk \
    --cc=51321@debbugs.gnu.org \
    --cc=alan@idiocy.org \
    --cc=fgunbin@fastmail.fm \
    --cc=larsi@gnus.org \
    --cc=mardani29@yahoo.es \
    --cc=stefan@marxist.se \
    /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.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.