Mercurial > vim
comparison src/errors.h @ 32051:e8c60d35fce3 v9.0.1357
patch 9.0.1357: using null_object results in an internal error
Commit: https://github.com/vim/vim/commit/c4e1b86cb0d88fa5ec1141d3c600e026dcc1bc21
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Feb 26 18:58:23 2023 +0000
patch 9.0.1357: using null_object results in an internal error
Problem: Using null_object results in an internal error. (Ernie Rael)
Solution: Add instructions for pushing an object and class. (closes https://github.com/vim/vim/issues/12044)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 26 Feb 2023 20:00:03 +0100 |
parents | a509eb37a813 |
children | cdab211f342a |
comparison
equal
deleted
inserted
replaced
32050:181589e7fc64 | 32051:e8c60d35fce3 |
---|---|
3447 EXTERN char e_using_null_object[] | 3447 EXTERN char e_using_null_object[] |
3448 INIT(= N_("E1360: Using a null object")); | 3448 INIT(= N_("E1360: Using a null object")); |
3449 #endif | 3449 #endif |
3450 EXTERN char e_cannot_use_color_none_did_you_mean_none[] | 3450 EXTERN char e_cannot_use_color_none_did_you_mean_none[] |
3451 INIT(= N_("E1361: Cannot use color \"none\", did you mean \"NONE\"?")); | 3451 INIT(= N_("E1361: Cannot use color \"none\", did you mean \"NONE\"?")); |
3452 #ifdef FEAT_EVAL | |
3453 EXTERN char e_cannot_use_non_null_object[] | |
3454 INIT(= N_("E1362: Cannot use a non-null object")); | |
3455 #endif |