Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d47afbc0
Commit
d47afbc0
authored
Oct 06, 2009
by
Glenn Morris
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(fortran-end-of-block, fortran-beginning-of-block):
Also push mark in the macro case.
parent
0c2b6f8e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/progmodes/fortran.el
lisp/progmodes/fortran.el
+2
-2
No files found.
lisp/progmodes/fortran.el
View file @
d47afbc0
...
...
@@ -1295,7 +1295,7 @@ If NUM is negative, go backward to the start of a block. Does
not check for consistency of block types. Interactively, pushes
mark before moving point."
(interactive "p")
(if (called-interactively-p '
interactive
) (push-mark (point) t))
(if (called-interactively-p '
any
) (push-mark (point) t))
(and num (< num 0) (fortran-beginning-of-block (- num)))
(let ((case-fold-search t)
(count (or num 1)))
...
...
@@ -1328,7 +1328,7 @@ blocks. If NUM is negative, go forward to the end of a block.
Does
not
check
for
consistency
of
block
types.
Interactively,
pushes
mark
before
moving
point.
"
(interactive "
p
")
(if (called-interactively-p '
interactive
) (push-mark (point) t))
(if (called-interactively-p '
any
) (push-mark (point) t))
(and num (< num 0) (fortran-end-of-block (- num)))
(let ((case-fold-search t)
(count (or num 1)))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment