]> git.eshelyaron.com Git - sweep.git/commitdiff
Only extract goals to separate predicates, not data terms
authorEshel Yaron <me@eshelyaron.com>
Sat, 9 Sep 2023 07:32:38 +0000 (09:32 +0200)
committerEshel Yaron <me@eshelyaron.com>
Sat, 9 Sep 2023 07:39:41 +0000 (09:39 +0200)
* sweeprolog.el (sweeprolog-context-menu-for-region)
(sweeprolog-maybe-extract-region-to-predicate): Check that the region
starts in a callable position.
(sweeprolog-extract-region-to-predicate): Reanalyze the buffer as a
last step.
* sweep.texi: Adjust.

sweep.texi
sweeprolog.el

index bd8c45997752abbfb47fa94ac8c3c13be6fb94d5..820f741b821fdf19daaec52e9f09cddb8aa32857 100644 (file)
@@ -2129,8 +2129,8 @@ By default, @code{sweeprolog-insert-term-dwim} tries the following
 insertion functions, in order:
 
 @defun sweeprolog-maybe-extract-region-to-predicate
-If the region is active, extract the selected goal into a separate
-predicate.  @xref{Extract Goal}.
+If the region is active and selects a goal, extract the selected goal
+into a separate predicate.  @xref{Extract Goal}.
 @end defun
 
 @defun sweeprolog-maybe-insert-next-clause
@@ -2334,12 +2334,13 @@ position, and the position of the mouse click.  It should alter the
 menu according to that context.
 @end defvar
 
-To enable Context Menu, type @kbd{M-x context-menu-mode @key{RET}} or
-add a call to @code{(context-menu-mode)} in your Emacs initialization
-file to enable it in all future sessions.  You access the context menu
-by right-clicking anywhere in Emacs.  If you do it in a Sweep Prolog
-mode buffer, you can invoke several Prolog-specific commands based on
-where you click in the buffer.
+To enable Context Menu mode, type @kbd{M-x context-menu-mode
+@key{RET}}.  To have Context Menu mode enabled automatically when
+Emacs starts, place a call to @code{(context-menu-mode)} in your Emacs
+initialization file.  You can access the context menu by
+right-clicking anywhere in Emacs.  If you do it in a Sweep Prolog mode
+buffer, you can invoke several Prolog-specific commands based on where
+you click in the buffer.
 
 If you right-click on a Prolog file specification or module name,
 Sweep suggests visiting it either in the current window or in another.
@@ -2347,7 +2348,7 @@ If you right-click on a predicate, it lets you view its documentation
 in a dedicated buffer (@pxref{Prolog Help}).  For variables, it
 enables the @samp{Rename Variable} menu entry that you can use to
 rename the variable you click on across its containing clause
-(@pxref{Renaming Variables, , Renaming Variables}).
+(@pxref{Renaming Variables}).
 
 You can further extend and customize the context menu that Sweep
 Prolog mode provides by adding functions to the variable
@@ -2548,6 +2549,10 @@ result of being extracted from the current clause,
 @code{sweeprolog-extract-region-to-predicate} warns you about it and
 asks you to confirm before continuing.
 
+If you call @code{sweeprolog-extract-region-to-predicate} when the
+region does not contain a valid Prolog term, this command complains
+and refuses to extract the invalid term.
+
 By default, @code{sweeprolog-extract-region-to-predicate} is not bound
 directly to any key in Sweep Prolog mode; instead, you can invoke it
 by typing @kbd{M-@key{RET}} (@code{sweeprolog-insert-term-dwim}) when
index fbdb9b949a671308d39b31daa5f9238f14d26260..c3fe6c80ab39b9aab48b3d06419ddf291cc3d66b 100644 (file)
@@ -6000,11 +6000,14 @@ POINT is the buffer position of the mouse click."
              (<= sweeprolog-context-menu-region-beg-at-click
                  point
                  sweeprolog-context-menu-region-end-at-click))
-    (define-key menu [sweeprolog-extract-region-to-predicate]
-                `(menu-item "Extract to New Predicate"
-                            sweeprolog-extract-region-to-predicate
-                            :help "Extract the selected goal into a separate predicate"
-                            :keys "\\[sweeprolog-extract-region-to-predicate]"))))
+    (when (sweeprolog-context-callable-p
+           sweeprolog-context-menu-region-beg-at-click)
+      (define-key
+       menu [sweeprolog-extract-region-to-predicate]
+       `(menu-item "Extract to New Predicate"
+                   sweeprolog-extract-region-to-predicate
+                   :help "Extract the selected goal into a separate predicate"
+                   :keys "\\[sweeprolog-insert-term-dwim] in active region")))))
 
 (defvar sweeprolog-context-menu-functions
   '(sweeprolog-context-menu-for-clause
@@ -6895,10 +6898,12 @@ where in the buffer to insert the newly created predicate."
                             body
                             ".\n"))
             (indent-region-line-by-line def-beg (point))
-            (goto-char def-beg)))))))
+            (goto-char def-beg)
+            (sweeprolog-analyze-buffer)))))))
 
 (defun sweeprolog-maybe-extract-region-to-predicate (&rest _)
-  (when (use-region-p)
+  (when (and (use-region-p)
+             (sweeprolog-context-callable-p (use-region-beginning)))
     (sweeprolog-extract-region-to-predicate
      (use-region-beginning)
      (use-region-end)