You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: TODO.org
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
** TODO Some docstrings are quite long which lets you pass package-lint and makes for good enough M-x apropos output, but they wrap poorly in M-x help.
2
2
** DONE "delimiater" -> "delimiter"
3
3
** DONE Since you're using Emacs 25 you can use the string-trim functions (could format-table-trim-row be rewritten as just (string-trim row begin-row end-row)?
4
-
** TODO Could the first conditional in format-table-remove-noise be written either as:
4
+
** DONE Could the first conditional in format-table-remove-noise be written either as:
5
5
6
6
#+BEGIN_SRC emacs-lisp
7
7
(unless (or (string-equal "" cur-line)
@@ -17,6 +17,9 @@
17
17
(push cur-line ret))
18
18
#+END_SRC
19
19
20
+
*** NOTE The version using `and' is slightly more concise, but I believe the compromise I made between the two suggestions to be more readable.
21
+
*** NOTE2 I'm wary of going all the way to string-blank-p as I wouldn't want to break potential compatibility with a table format which uses whitespace in a way I hadn't thought of.
22
+
20
23
** TODO Could the last conditional in format-table-remove-noise be written with (when ret ...) instead of (if (not ret) nil ...)?
0 commit comments