From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id aCH8C6b+Al/5NgAA0tVLHw (envelope-from ) for ; Mon, 06 Jul 2020 10:36:22 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id +A3AB6b+Al8CQgAAbx9fmQ (envelope-from ) for ; Mon, 06 Jul 2020 10:36:22 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 509F4940AD0 for ; Mon, 6 Jul 2020 10:36:21 +0000 (UTC) Received: from localhost ([::1]:57930 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jsOTy-0006y2-Rj for larch@yhetil.org; Mon, 06 Jul 2020 06:36:18 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:32786) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jsOTb-0006xu-71 for emacs-orgmode@gnu.org; Mon, 06 Jul 2020 06:35:55 -0400 Received: from mta.vmaly.com ([94.242.65.182]:53044) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jsOTZ-0000hA-7m for emacs-orgmode@gnu.org; Mon, 06 Jul 2020 06:35:54 -0400 Subject: Re: [SOLVED] Q: placement of initialization for org-time-stamp-formats To: Robert Pluim References: From: hj-orgmode-1@hj.proberto.com Message-ID: Date: Mon, 6 Jul 2020 12:35:41 +0200 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Received-SPF: none client-ip=94.242.65.182; envelope-from=hj-orgmode-1@hj.proberto.com; helo=mta.vmaly.com X-detected-operating-system: by eggs.gnu.org: First seen = 2020/07/06 06:35:44 X-ACL-Warn: Detected OS = Linux 3.1-3.10 X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_NONE=0.001 autolearn=_AUTOLEARN X-Spam_action: no action X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: emacs-orgmode@gnu.org Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Spam-Score: -1.01 X-TUID: RXXPf9L6XuVN On 7/3/20 3:51 PM, Robert Pluim wrote: >>>>>> On Fri, 3 Jul 2020 15:18:40 +0200, hj-orgmode-1@hj.proberto.com said: > hj-orgmode-1>  Hello again. > > hj-orgmode-1>  After a lot of searching and trying, I finally figured one thing that > hj-orgmode-1> seems to work: ( I am no lisp programmer, so I don't know what > hj-orgmode-1> negative side effects might this have) ; I've added into > hj-orgmode-1> dotspacemacs/user-config section inside .spacemacs : > > hj-orgmode-1>  (add-hook 'org-load-hook > hj-orgmode-1>           (lambda () > hj-orgmode-1>             (setq org-time-stamp-formats '("<%Y-%m-%d %a>" > hj-orgmode-1> . "<%Y-%m-%d %a %H:%M:%S %Z>")) )) > > hj-orgmode-1>  Does that look like this should have no undesirable side effects? > > Thatʼs normally written > > (with-eval-after-load "org" > (setq org-time-stamp-formats '("<%Y-%m-%d %a>" . "<%Y-%m-%d %a%H:%M:%S %Z>"))) > > Robert Thank you!! Your suggestion is working very well!!  H.J.