Re: [O] OK again, was: Re: Bug: git clone https://code.orgmode.org/bzg/org-mode.git fails with fatal: unable to access 'https://code.orgmode.org/bzg/org-mode.git/': server certificate verification fai

2018-08-25 Thread Brent Goodrick
Thanks Robert. Everything is working perfectly now! On Sun, Aug 19, 2018 at 9:51 AM, Robert Klein wrote: > Hi Brent, > > On Sun, 19 Aug 2018 08:32:27 -0700 > Brent Goodrick wrote: > > > > > I noted that even browsing to the website at https://orgmode.org > >

[O] Bug: git clone https://code.orgmode.org/bzg/org-mode.git fails with fatal: unable to access 'https://code.orgmode.org/bzg/org-mode.git/': server certificate verification failed. CAfile: /etc/ssl/c

2018-08-19 Thread Brent Goodrick
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list.

Re: [O] git://orgmode.org/org-mode.git --> g...@code.orgmode.org:bzg/org-mode.git : Now password is required

2018-04-29 Thread Brent Goodrick
Thanks! On Thu, Apr 26, 2018 at 4:34 PM, Bastien wrote: > Hi Brent, > > https cloning is for users who just want to git pull: > https://code.orgmode.org/bzg/org-mode.git > > git:// cloning is for developers with a username on code.orgmode.org: > git clone

Re: [O] Bug: Prevent fill-paragraph from breaking inside Org mode links [9.1.9 (release_9.1.9-580-g39837b @ /home/drunkard/emacs_lisp_imported/org-mode/org-mode/lisp/)]

2018-04-09 Thread Brent Goodrick
Hi Nicolas, All of that sounds reasonable. Thanks for the reply. -Brent On Sun, Apr 8, 2018, 9:43 AM Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Brent Goodrick <bgo...@gmail.com> writes: > > > First, it may be a separate "bug" that o

[O] Bug: Prevent fill-paragraph from breaking inside Org mode links [9.1.9 (release_9.1.9-580-g39837b @ /home/drunkard/emacs_lisp_imported/org-mode/org-mode/lisp/)]

2018-04-08 Thread Brent Goodrick
This is not a new bug. It has been there for a long time, but I am only just now getting around to reporting it. I am also proposing a fix below. How to reproduce: Open up a Org mode file and add the following item to it:

Re: [O] Removing ding each time I type TAB when not after a structure template with org-tempo enabled

2018-02-25 Thread Brent Goodrick
workaround for now. Thanks for the help! Brent On Sun, Feb 11, 2018 at 3:05 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Brent Goodrick <bgo...@gmail.com> writes: > > > In this new version, I discovered that structure templates were not > &

Re: [O] Broken links on orgmode.org site that point to Gmane

2018-02-11 Thread Brent Goodrick
Cool!! On Feb 11, 2018 5:19 AM, "Nicolas Goaziou" <m...@nicolasgoaziou.fr> wrote: > Hello, > > Brent Goodrick <bgo...@gmail.com> writes: > > > At Sat Feb 3 12:27:14 PST 2018, I navigated to > > > > https://orgmode.org/community.html > &g

[O] Removing ding each time I type TAB when not after a structure template with org-tempo enabled

2018-02-04 Thread Brent Goodrick
Hi: I recently upgraded to org from Git. Thus, org-version for me returns: Org mode version 9.1.6 (release_9.1.6-425-gd89e35 @ /home/brentg/emacs_lisp_imported/org-mode/org-mode/lisp/) In this new version, I discovered that structure templates were not enabled by default, so I enabled them. But

[O] git://orgmode.org/org-mode.git --> g...@code.orgmode.org:bzg/org-mode.git : Now password is required

2018-02-03 Thread Brent Goodrick
Hi, Short summary to bypass the TL;DR below: In order for me to do a 'git pull' into an existing local repo only for 'read-only' mode (not contributing changes back), I had to change my .git/config from: [remote "official"] url = git://orgmode.org/org-mode.git fetch =

[O] Broken links on orgmode.org site that point to Gmane

2018-02-03 Thread Brent Goodrick
Hi Org Mode: At Sat Feb 3 12:27:14 PST 2018, I navigated to https://orgmode.org/community.html then saw "Browse it through Gmane" which has a link to: http://news.gmane.org/gmane.emacs.orgmode Clicking on that link gave a Page Not found error. Regards, bgoodr

Re: [O] org-src--contents-for-write-back : preserve original major-mode, and avoid mixing tabs and spaces in org-mode buffers

2017-04-29 Thread Brent Goodrick
On Sat, Apr 29, 2017 at 2:59 AM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Brent Goodrick <bgo...@gmail.com> writes: > >> I do not understand what is meant by "tailored for the source" which >> is the Org buffer. All of the ind

Re: [O] org-src--contents-for-write-back : preserve original major-mode, and avoid mixing tabs and spaces in org-mode buffers

2017-04-28 Thread Brent Goodrick
On Thu, Apr 27, 2017 at 4:04 PM, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > > Hello, > > Brent Goodrick <bgo...@gmail.com> writes: > > > In the current implementation of org-src--contents-for-write-back, the > > `with-temp-buffer` uses fundamenta

Re: [O] org-src--contents-for-write-back : preserve original major-mode, and avoid mixing tabs and spaces in org-mode buffers

2017-04-22 Thread Brent Goodrick
On Sat, Apr 22, 2017 at 1:41 AM, Nicolas Goaziou wrote: > > > The bug is in the `org-src--contents-for-write-back' function. It > > uses a temp buffer. The temp buffer's major-mode is left to be > > the default, which is fundamental-mode, which knows nothing about > > how

[O] org-src--contents-for-write-back : preserve original major-mode, and avoid mixing tabs and spaces in org-mode buffers

2017-04-20 Thread Brent Goodrick
indentation (= indentation 0)) (let ((ind (make-string indentation ?\s))) (goto-char (point-min)) (while (not (eobp)) (when (looking-at-p "[ \t]*\\S-") (insert ind)) (forward-line (buffer-string) If the above change seems correct, can someone apply it to org-mode? Thanks, Brent Goodrick