[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/rec-mode 5eabbdb 52/98: syntax-check fixes.
From: |
Stefan Monnier |
Subject: |
[elpa] externals/rec-mode 5eabbdb 52/98: syntax-check fixes. |
Date: |
Thu, 12 Nov 2020 13:18:39 -0500 (EST) |
branch: externals/rec-mode
commit 5eabbdbacb664c8f9a8b09174b6a6563c9930835
Author: Jose E. Marchesi <jemarch@gnu.org>
Commit: Antoine Kalmbach <ane@iki.fi>
syntax-check fixes.
---
etc/rec-mode.el | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/etc/rec-mode.el b/etc/rec-mode.el
index a5f2b78..a2674e7 100644
--- a/etc/rec-mode.el
+++ b/etc/rec-mode.el
@@ -84,7 +84,7 @@ hidden by default in navigation mode.")
(defconst rec-time-stamp-format "%Y-%m-%d %a %H:%M"
"Format for `format-time-string' which is used for time stamps.")
-
+
(defvar rec-comment-re "^#.*"
"regexp denoting a comment line")
@@ -226,7 +226,7 @@ If the point is not at the beginning of a field name return
nil"
(goto-char (match-end 0))
(buffer-substring-no-properties (match-beginning 0)
(- (match-end 0) 1))))
-
+
(defun rec-parse-field-value ()
"Return the field value under the pointer.
@@ -991,13 +991,13 @@ the visibility."
"Unfold any folded field in the current record."
(let ((record (rec-current-record)))
(when (rec-record-p record)
- (mapcar
+ (mapcar
(lambda (field)
(save-excursion
(goto-char (rec-field-position field))
(rec-unfold-field)))
(rec-record-fields record)))))
-
+
(defun rec-toggle-field-visibility ()
"Toggle the visibility of the current field."
(let ((field (rec-current-field)))
@@ -1035,7 +1035,7 @@ the visibility."
;;
;; int, bool, range, real, size, line, regexp, date,
;; enum, field, email, uuid, rec
-;;
+;;
;; DESCR is the data describing the type, and its value depends on the
;; kind:
;;
@@ -1044,12 +1044,12 @@ the visibility."
;; - For ranges, it is a list (MIN MAX) defining the range
;; [MIN,MAX]. Open ranges can be specified by using nil. For
;; example: (0,nil).
-;;
+;;
;; - For regexps, it is a string containing the regexp.
;;
;; - For record types, it is a string containing the type of
;; the referred records.
-;;
+;;
;; - For any other type, it is nil.
(defvar rec-types
@@ -1496,7 +1496,7 @@ or `nil' if no selection is active.")
(pos (rec-record-position first-record)))
(goto-char pos)
(rec-show-record))))
-
+
(defun rec-cmd-select ()
"Perform a selection on the current buffer using some criteria.
@@ -1521,7 +1521,7 @@ A prefix argument means to use a case-insensitive search."
(when (not (equal sex ""))
(setq rec-current-selection (rec-query :sex sex))
(rec-navigate-selection)))
-
+
;;;; Commands
;;
;; The following functions implement interactive commands available in
@@ -1927,7 +1927,7 @@ This command is especially useful with enumerated types."
"%) ")))
percentages)
(message "%s" str))))))
-
+
(defun rec-cmd-append-field ()
"Goto the end of the record and switch to edit record mode."
(interactive)
- [elpa] externals/rec-mode 4eb296f 94/98: Add Info mode manual, (continued)
- [elpa] externals/rec-mode 4eb296f 94/98: Add Info mode manual, Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode b03b215 07/98: Trailing blanks removed., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 6c82c97 13/98: ob-rec.el is not part of Emacs., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 884d53e 20/98: Initial implementation of encrypted fields., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode f111394 29/98: rec-mode: more work in the field types., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 37fa271 21/98: rec-mode: fix error when saving a newly created file, Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 19d0cef 35/98: rec-mode: support for selection expressions in rec-count., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 2204ecc 40/98: rec-mode: support for editing date fields using the calendar., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 88bab07 45/98: rec-mode: time-stamps are now triggered with n'., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 9c6d63d 50/98: rec-mode: copy/kill fields and records commands., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 5eabbdb 52/98: syntax-check fixes.,
Stefan Monnier <=
- [elpa] externals/rec-mode 241e824 55/98: rec-mode: don't move the pointer after switching to edit buffer or edit type mode., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode d505c30 61/98: rec-mode: visiting an empty file works again., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 903c1dc 59/98: rec-mode: check for the validity of the contents of the buffers before going to navigation mode., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 979fcef 69/98: ob-rec.el: support for :groupby and :join added., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 34714d3 85/98: rec-mode: fix typo and run the actual hooks., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode e1ad9fe 84/98: rec-mode: fix setq typo, Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode e4419ae 87/98: Copyright years updated to 2019., Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 105ff13 88/98: Updated copyright years, Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode 053f28a 90/98: Lexical binding, style and compatibility fixes, Stefan Monnier, 2020/11/12
- [elpa] externals/rec-mode cd42c9f 93/98: Docstring improvements (via checkdoc), Stefan Monnier, 2020/11/12