Merge remote-tracking branch 'upstream/master'

This commit is contained in:
D. Joe 2019-01-04 07:58:11 -05:00
commit 6510f0586d
3 changed files with 62 additions and 0 deletions

View File

@ -10,6 +10,16 @@ rather than to
which I infer based on authorship and style is the intended target.
The broken link was removed between:
https://web.archive.org/web/20170101000000*/http://250bpm.com/
and
https://web.archive.org/web/20171009164632/http://250bpm.com/
Typo in
<http://250bpm.com/blog:93>

11
org-mode-diary.md Normal file
View File

@ -0,0 +1,11 @@
The emacs wikii page for diary mode:
<https://www.emacswiki.org/emacs/DiaryMode>
simply has an instance of misspelling:
> wether
which should be corrected to read as *whether*.

41
script-missing-dir.md Normal file
View File

@ -0,0 +1,41 @@
The `script` utility dumps core when one attempts to log to a file in a
non-existent directory.
```
~$ mkdir script-demo
~$ cd script-demo
~/script-demo$ script nosuchdir/file.txt
Script started, file is nosuchdir/file.txt
script: cannot open nosuchdir/file.txt: No such file or directory
Script done, file is nosuchdir/file.txt
Segmentation fault (core dumped)
```
```
~$ which script
bsdutils: /usr/bin/script
~$ dpkg -S `which script`
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name Version Architecture Description
+++-==============-===================-============-=================================
ii bsdutils 1:2.27.1-6ubuntu3.4 amd64 basic utilities from 4.4BSD-Lite
```
One expects instead that the program exit with an error message:
```
~$ mkdir script-demo
~$ cd script-demo
~/script-demo$ script nosuchdir/file.txt
Script started, file is nosuchdir/file.txt
script: cannot open nosuchdir/file.txt: No such file or directory
```